0

I want to create a GraphML repository report for all in-house made artifacts in my local Maven repository similar to the repreport target (ant/ivy).

so far i found:

  • create mega-pom which includes just all artefacts (600+) and run dependency:tree with type=graphml on it
  • use the repreport target (ant/ivy) directly with the maven-ant plugin

Are there other - read: more elegant and maven-like - solutions ?

Michael Pralow
  • 6,560
  • 2
  • 30
  • 46

1 Answers1

0

Have you tried using the graphml output type?

mvn dependency:tree -Doutput=/path/to/file.graphml -DoutputType=graphml
Mark O'Connor
  • 76,015
  • 10
  • 139
  • 185