开发者

Maven3 - How do I found dependency resolution? ( mvn depedency:tree does not work for mvn3 )

开发者 https://www.devze.com 2023-04-05 04:08 出处:网络
With maven-3, it uses aether to resolve dependency. Unfortunately, \"mvn dependency:tree\" use legacy (maven-2) resolution engine.

With maven-3, it uses aether to resolve dependency.

Unfortunately, "mvn dependency:tree" use legacy (maven-2) resolution engine.

How do I f开发者_StackOverflow社区ind out the true dependency resolution for maven-3. I'm running into an issue where "exec:exec" creates different classpath then "dependency:tree".

In maven 3 - compatibility notes, it says I need to use "-X" and look at the log but there is no pointer what to look for.

Also, "assembly:assembly" brings in different 'jar' than when I print out classpath from "exec:exec".


dependency:tree is the correct way to get the project dependencies. Since version 2.5 of the plugin it now resolves the tree using aether.

exec:exec runs the maven exec plugin. The classpath it generates is based on the plugin dependencies, if specified. It is relevant only for the purpose of the plugin execution and not to be taken in the context of project.

The similar explanation holds good in case of assembly:assembly. The jars that it brings in entirely depends on the plugin and assembly-descriptor configuration.


Since version 2.5 of the Maven Dependency Plugin, dependency:tree works with Maven 3 (see the bug report, and the release notes)

0

精彩评论

暂无评论...
验证码 换一张
取 消