如何使用Maven创建GraphML存储库报告?

时间:2011-08-24 07:32:44

标签: maven dependencies report ivy graphml

我想为我的本地Maven存储库中的所有内部制作工件创建一个GraphML存储库报告,类似于repreport target (ant/ivy)

到目前为止,我发现:

  • 创建mega-pom,其中包含所有人工制品(600+)并运行依赖:其上带有type = graphml的树
  • 直接将repreport target (ant/ivy)与maven-ant插件
  • 一起使用

还有其他 - 阅读:更优雅和类似maven的解决方案?

1 个答案:

答案 0 :(得分:0)

您是否尝试过使用graphml output type

mvn dependency:tree -Doutput=/path/to/file.graphml -DoutputType=graphml
相关问题