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.