I need to generate a dependency graph for my java application but only for sub-modules and not the plugins.
Example in pom.xml
<modules>
<module>module1/pom1.xml</module>
<module>module2/pom2.xml/module>
</modules>
I tried depgraph with graphviz but it generates the plugins dependencies and not the sub-modules, any idea?
Thanks in advance.
Finaly i found the solution using depgraph plugin , its to a apply a filter in its configuration like this :
this will draw all draw all dependencies starting with “com.stackoverflow” , in my case they are submodules.
Hope it helps.