使用IntelliJ生成依赖关系图

时间:2020-03-03 14:44:37

标签: java maven intellij-idea

如何使用IntelliJ生成Maven依赖关系图,该图将显示 com.mycompany 包的依赖关系,包括父项,模块和依赖项。也就是说,不会显示不在com.mycompany下的父母模块依赖项

上下文菜单“ Maven Show Dependencies”显然无法实现?

此外,IntelliJ Maven Diagram插件无法显示<dependencyManagement>下的依赖关系

1 个答案:

答案 0 :(得分:0)

一个更好的选择是使用:https://github.com/ferstl/depgraph-maven-plugin

然后运行

mvn depgraph:aggregate -DgraphFormat=gml

这将生成Maven依赖图。