In a multi-module project, how can you specify that you want to execute a plugin goal in all the child-modules, but not on the parent project? There is
This below config worked for me. Add the plugin in both the parent and child pom.
Parent :
maven-jar-plugin true integration-test jar true
Child
maven-jar-plugin false integration-test jar false