On Sunday 06 May 2007 12:57, Steven E. Harris wrote: > Footnotes: > ¹ Does anyone know of a way to trace the root cause of a dependency in > Maven? That is, find which artifact cites the dependency directly?
Generally, if you run "mvn -X" it will spit out a TON of stuff. One thing it spits out is a dependency tree where you can see what is including what. If you want something fancier, you can run "mvn site" and it will generate a bunch of HTML stuff in target/site. One of those is a dependency report which has a tree in it as well. -- J. Daniel Kulp Principal Engineer IONA P: 781-902-8727 C: 508-380-7194 [EMAIL PROTECTED] http://www.dankulp.com/blog
