Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save reynoldsm88/639d4cbfc503afbc0e7f27d3ebe9ca45 to your computer and use it in GitHub Desktop.
Save reynoldsm88/639d4cbfc503afbc0e7f27d3ebe9ca45 to your computer and use it in GitHub Desktop.
<pluginManagement>
<plugins>
<!--This plugin's configuration is used to store Eclipse m2e settings
only. It has no influence on the Maven build itself. -->
<plugin>
<groupId>org.eclipse.m2e</groupId>
<artifactId>lifecycle-mapping</artifactId>
<version>1.0.0</version>
<configuration>
<lifecycleMappingMetadata>
<pluginExecutions>
<pluginExecution>
<pluginExecutionFilter>
<groupId>org.kie</groupId>
<artifactId>kie-maven-plugin</artifactId>
<versionRange>${version.brms-bpmsuite}</versionRange>
<goals>
<goal>compile</goal>
<goal>package</goal>
<goal>build</goal>
</goals>
</pluginExecutionFilter>
<action>
<ignore />
</action>
</pluginExecution>
</pluginExecutions>
</lifecycleMappingMetadata>
</configuration>
</plugin>
</plugins>
</pluginManagement>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment