I am using a parent POM that defines a plugin that I do not want to be run in a child POM. How can I disable the plugin in the child pom completely?
Constraint: I cannot change the parent POM itself.
|
I am using a parent POM that defines a plugin that I do not want to be run in a child POM. How can I disable the plugin in the child pom completely? Constraint: I cannot change the parent POM itself. |
|||
|
|
|
The following works for me when disabling Findbugs in a child POM:
Note: the full definition of the Findbugs plugin is in our parent/super POM, so it'll inherit the version and so-on. |
|||
|
|
See if the plugin has a 'skip' configuration parameter. Nearly all do. if it does, just add it to a declaration in the child:
If not, then use:
|
|||||||||||||
|