I had a situation where I wanted each of the developers to be able to locally do a build and automatically deploy to WebLogic, but I didn't want jobs executed by the CI pipeline to do any automatic deployments. Since the WebLogic plugin didn't offer a skip option, I had to find another way.
What I ended up doing was changing the <phase> for the plugin to a variable instead of it being static. Something like this...
Maven
<plugin>
...
<execution>
...
<phase>${skipPluginPhase}</phase>
...
</execution>
...
</plugin>
Then I could define the value for the skipPluginPhase property like...
Maven
<properties>
<skipPluginPhase>none</skipPluginPhase>
</properties>
Leaving it as 'none' would skip plugin execution, whereas putting in a valid phase like 'install' would execute the plugin as expected. The only change each developer would need to do locally was update their version of the pom.xml file to reflect this.
To avoid unnecessary editing of the pom.xml file it is also possible to set up a number of different profiles in your Maven build. The default profile could then set skipPluginPhase to a valid phase name and a profile set up just for the CI pipeline could set skipPluginPhase to none, whereby skipping plugin execution.
-i