On 10/11/06, Patrick Moore <[EMAIL PROTECTED]> wrote:
Is there a plugin that explodes the dependency graph so that it is possible to see why a jar is being included in the build? I have a bunch of mystery jars that I would like to eliminate, or at least know which library is trying to use them.
In addition to the dependency page that is generated as part of the website, you can also use -X on the command line. That will generate an indented tree view of the dependencies (among other things.) You'll probably want to redirect the output to a text file and view it with something that doesn't wrap lines. $ mvn install -X > output.txt HTH, Wendy --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
