views:

1009

answers:

3

I am trying to locate an evil plugin that includes a stoneage version of a certain jar file. How do I do that ?

+3  A: 

also, mvn -X will spit out all kinds of info, i believe it includes dependency versions.

+3  A: 

mvn dependency:tree - shows you a tree of all dependencies including transitive dependencies

Scott Bale
Note: This only displays project dependencies, not plugin dependencies.
Alex Miller
A: 

There is a more detailed answer here, including how to filter the dependency tree to just see the results you're interested in.

Air