Add configuration for the Project Dependency Graph / Dependency Tree --------------------------------------------------------------------
Key: MPIR-107 URL: http://jira.codehaus.org/browse/MPIR-107 Project: Maven 2.x Project Info Reports Plugin Issue Type: Improvement Components: dependencies Reporter: Arnaud Like we can configure the tree in the maven-dependency-plugin (http://maven.apache.org/plugins/maven-dependency-plugin/tree-mojo.html), Why we can't configure the tree in this plugin ? In my project, i 'd like show only module of my compagny in the tree, and if there are conflict. so i 'd like use this configuration (it works with the commande : mvn dependency:tree ) {code} <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-dependency-plugin</artifactId> <version>${versionDependency}</version> <configuration> <includes>net.mycompany.*</includes> <verbose>true</verbose> </configuration> </plugin> </plugins> </build> {code} thank you -- This message is automatically generated by JIRA. - If you think it was sent incorrectly contact one of the administrators: http://jira.codehaus.org/secure/Administrators.jspa - For more information on JIRA, see: http://www.atlassian.com/software/jira