Maven Dependency Tree
March 21, 2023 | Maven, Dependency | ...
Ever wanted to understand the dependency graph in a Maven project with sub-modules?
- Add the following to the parent pom.xml:
<project>
<build>
<plugins>
<plugin>
<groupId>com.github.ferstl</groupId>
<artifactId>depgraph-maven-plugin</artifactId>
<version>4.0.3</version>
</plugin>
</plugins>
</build>
</project>
- Run
mvn depgraph:aggregate -DcreateImage=true [-Dincludes=groupId:artifactId]
- The graph can be found at
target/dependency-graph.png
Documentation: https://github.com/ferstl/depgraph-maven-plugin
Example
(Click to enlarge)