jpackage-maven-plugin
jpackage-maven-plugin copied to clipboard
Skip mode for parent in multi-module projects
I'm testing the plugin in multi-module project context.
The parent project aggregates all modules, but a child module would generate platform installers.
- Parent/
- Child/ => Package Module
- Util/ ...
Most of maven plugins accepts a <skip>true</skip>
configuration, enabling us to propagate the goals from parent to the children.
Example:
Parent
<plugin>
<groupId>org</groupId>
<artifactId>art</artifactId>
<configuration>
<skip>true</skip>
</configuration>
</plugin>
Child
<plugin>
<groupId>org</groupId>
<artifactId>art</artifactId>
<configuration>
<skip>false</skip>
</configuration>
</plugin>