Add a profile to generate a dependency graph of the modules.

git-svn-id: https://svn.apache.org/repos/asf/activemq/trunk@1427860 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Hiram R. Chirino 2013-01-02 16:56:56 +00:00
parent f0baf856d7
commit 650d2b4d52
1 changed files with 16 additions and 0 deletions

16
pom.xml
View File

@ -1491,6 +1491,22 @@
</plugins>
</build>
</profile>
<!--
To generate a graph of the project dependencies, run:
mvn -P graph graph:reactor -Dhide-scope=test -Dhide-transitive=true -Dhide-external=true -Dgraph.label= -Dhide-version=true -Dhide-group-id=true -Dhide-type=true
-->
<profile>
<id>graph</id>
<build>
<plugins>
<plugin>
<groupId>org.fusesource.mvnplugins</groupId>
<artifactId>maven-graph-plugin</artifactId>
<version>1.15</version>
</plugin>
</plugins>
</build>
</profile>
</profiles>
</project>