ferstl / depgraph-maven-plugin

A Maven plugin that generates dependency graphs in various formats (DOT, GML, PlantUML, JSON and Text)
Apache License 2.0
554 stars 84 forks source link

multiple projects #152

Closed quantrpeter closed 2 years ago

quantrpeter commented 2 years ago

Hi. Does this support multiple projects? Analyzt the dependency at once for multiple projects? I got many maven projects that referencing each other, I need to see a graph. thanks

ferstl commented 2 years ago

Hi, The plugin works for single-module and for multi-module projects. However, you can run it only at one Maven project at a time (same as with Maven itself). Take a look a the aggregate goals for multi-module projects. If you run the graph goal on a multi-module project, it will create a graph for each module individually.

quantrpeter commented 2 years ago

thanks