In Maven 2, how do I know from which dependency comes a transitive dependency?

To add to David Crow here's a dependency:tree example from the Maven site.

To add to @David Crow, here's a dependency:tree example from the Maven site: mvn dependency:tree -Dincludes=velocity:velocity might output INFO dependency:tree INFO org.apache.maven. Plugins:maven-dependency-plugin:maven-plugin:2.0-alpha-5-SNAPSHOT INFO \- org.apache.maven. Doxia:doxia-site-renderer:jar:1.0-alpha-8:compile INFO \- org.codehaus.

Plexus:plexus-velocity:jar:1.1.3:compile INFO \- velocity:velocity:jar:1.4:compile.

Using the Maven Dependency Plugin: mvn dependency:tree.

If you use eclipse and the m2eclipse plugin (m2eclipse.sonatype.org) then there is a graphical version of dependency tree where you can filter by scope etc.

The dependency information is also included in the Project Information/Dependencies report if you have maven generate a site for the project, using mvn site.

You can have many reports by mvn site One of them is the dependency report.

If you run maven with "-x" switch, it will print out plenty of diagnostics, I guess the relevant dependency path can be picked up from there.

I cant really gove you an answer,but what I can give you is a way to a solution, that is you have to find the anglde that you relate to or peaks your interest. A good paper is one that people get drawn into because it reaches them ln some way.As for me WW11 to me, I think of the holocaust and the effect it had on the survivors, their families and those who stood by and did nothing until it was too late.

Related Questions