Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMykola Nikishov2016-12-05 13:00:02 +0000
committerPascal Rapicault2016-12-16 14:20:57 +0000
commitd71b682320dcb31c3f71771d22bef14a74b46f0f (patch)
tree357da55cb920e9ecfd79e052196437c2957c732b
parent73794a50e1ad1063527b6e6babb985b3faa620db (diff)
downloadrt.equinox.p2-d71b682320dcb31c3f71771d22bef14a74b46f0f.tar.gz
rt.equinox.p2-d71b682320dcb31c3f71771d22bef14a74b46f0f.tar.xz
rt.equinox.p2-d71b682320dcb31c3f71771d22bef14a74b46f0f.zip
Change-Id: I8108e7d9ce3cf596e21223e091b6c24a7364a794 Signed-off-by: Mykola Nikishov <mn@mn.com.ua>
-rw-r--r--org.eclipse.equinox.p2.releng/org.eclipse.equinox.p2-parent/pom.xml44
1 files changed, 44 insertions, 0 deletions
diff --git a/org.eclipse.equinox.p2.releng/org.eclipse.equinox.p2-parent/pom.xml b/org.eclipse.equinox.p2.releng/org.eclipse.equinox.p2-parent/pom.xml
index 760f5f88c..2f1ddd161 100644
--- a/org.eclipse.equinox.p2.releng/org.eclipse.equinox.p2-parent/pom.xml
+++ b/org.eclipse.equinox.p2.releng/org.eclipse.equinox.p2-parent/pom.xml
@@ -65,4 +65,48 @@
</profile>
</profiles>
+ <build>
+ <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.eclipse.cbi.maven.plugins</groupId>
+ <artifactId>eclipse-cbi-plugin</artifactId>
+ <versionRange>[0.0.0,)</versionRange>
+ <goals>
+ <goal>generate-api-build-xml</goal>
+ </goals>
+ </pluginExecutionFilter>
+ <action>
+ <ignore></ignore>
+ </action>
+ </pluginExecution>
+ <pluginExecution>
+ <pluginExecutionFilter>
+ <groupId>org.eclipse.tycho.extras</groupId>
+ <artifactId>tycho-eclipserun-plugin</artifactId>
+ <versionRange>[0.0.0,)</versionRange>
+ <goals>
+ <goal>eclipse-run</goal>
+ </goals>
+ </pluginExecutionFilter>
+ <action>
+ <ignore></ignore>
+ </action>
+ </pluginExecution>
+ </pluginExecutions>
+ </lifecycleMappingMetadata>
+ </configuration>
+ </plugin>
+ </plugins>
+ </pluginManagement>
+ </build>
</project>

Back to the top