Maven Dependency插件Goal tree分析工程artifacts依赖
来自
https://maven.apache.org/plugins/maven-dependency-plugin/tree-mojo.html
常用Optional Parameters
常用参数,可在命令行中作用 -D参数名=参数值指定
appendOutput:追加输出,而不是覆盖
excludes,includes:通过逗号分离,格式[groupId]:[artifactId]:[type]:[version],支持通配符*
outputFile:指定输出文件路径
outputType:指定输出文件格式,默认text,还支持dot,graphml,tgf
输出工程依赖关系
mvn dependency:tree
重定向至文本文件
mvn dependency:tree -D outputFile=dependency_tree.txt
mvn dependency:tree -Dverbose -D outputFile=dependency_tree.txt
graphml格式,可使用Gephi打开,官网链接 https://gephi.org/ 或者使用yWorks的GraphMLViewer,需要嵌入浏览器中,这个比较小,只有1.1MB,https://www.yworks.com/downloads#GraphMLViewer
mvn dependency:tree -D outputFile=dependency_tree.graphml -D outputType=graphml
只搜索某一指定依赖,比如只搜索jackson jar包
版权声明:本文内容由互联网用户自发贡献,该文观点仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 举报,一经查实,本站将立刻删除。
文章由极客之音整理,本文链接:https://www.bmabk.com/index.php/post/14099.html