I have a project that needs to depend on a common root pom which declares a
bunch of plugin executions that 80% of the projects need.
I don't need some of the plugins though and they are slowing down my builds
when running pointlessly.
Some of the declare a massive amount of executions though and I don't want
to have to redeclare each of them to invalid phases.
I tried to use the combine.// syntax but that doesn't work:
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>sql-maven-plugin</artifactId>
<executions combine.self="override"/> // also tried with
combine.children
</plugin>
Is there any other way to do this?