Details
-
Type:
Improvement
-
Status:
Open
-
Priority:
Major
-
Resolution: Unresolved
-
Affects Version/s: None
-
Fix Version/s: None
-
Component/s: dependencies
-
Labels:None
-
Number of attachments :
Description
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 )
<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>
thank you
Wouldn't this make more sense as a report in the dependency plugin? There's already a report for analyze.