FAQ
Can I not use the project artifacts at all?
To exclude the project output from modulepath:
<modulepath>
<dependencysets>
<dependencyset>
<includeoutput>false</includeoutput>
</dependencyset>
</dependencysets>
</modulepath>
How to exclude automatic modules?
To exclude automatic modules from modulepath (but it's a default behavior):
<modulepath>
<dependencysets>
<dependencyset>
<excludeautomatic>true</excludeautomatic>
</dependencyset>
</dependencysets>
</modulepath>