Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDavid Williams2015-10-05 21:42:47 +0000
committerDavid Williams2015-10-05 21:42:47 +0000
commit21d2dc9cdb835cc10aabcad7b7e194dfd782c912 (patch)
treeb43e042b2b71dcfd5f74eae30188058d3a373862 /eclipse-platform-parent/pom.xml
parentf8cd0ba2ac605b5f98e6aca0eb90a18130604797 (diff)
downloadeclipse.platform.releng.aggregator-21d2dc9cdb835cc10aabcad7b7e194dfd782c912.tar.gz
eclipse.platform.releng.aggregator-21d2dc9cdb835cc10aabcad7b7e194dfd782c912.tar.xz
eclipse.platform.releng.aggregator-21d2dc9cdb835cc10aabcad7b7e194dfd782c912.zip
Bug 479081 - define tycho-eclipserun-plugin under <pluginManagement>
Diffstat (limited to 'eclipse-platform-parent/pom.xml')
-rw-r--r--eclipse-platform-parent/pom.xml35
1 files changed, 21 insertions, 14 deletions
diff --git a/eclipse-platform-parent/pom.xml b/eclipse-platform-parent/pom.xml
index 5a54ef785..b712b0f5e 100644
--- a/eclipse-platform-parent/pom.xml
+++ b/eclipse-platform-parent/pom.xml
@@ -422,6 +422,27 @@
<pluginManagement>
<plugins>
<plugin>
+ <groupId>org.eclipse.tycho.extras</groupId>
+ <artifactId>tycho-eclipserun-plugin</artifactId>
+ <!-- this is actually present in any 0.14+ version -->
+ <version>${tycho-extras.version}</version>
+ <configuration>
+ <executionEnvironment>JavaSE-1.8</executionEnvironment>
+ <repositories>
+ <repository>
+ <id>eclipse</id>
+ <layout>p2</layout>
+ <url>${eclipserun-repo}</url>
+ </repository>
+ </repositories>
+ <!--
+ This is to fix some lucene 3.x compatibility issues.
+ Required for 4.2 and earlier. Not for 4.3 and later.
+ <argLine>-Dhelp.lucene.tokenizer=standard</argLine>
+ -->
+ </configuration>
+ </plugin>
+ <plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-antrun-plugin</artifactId>
<version>1.8</version>
@@ -820,21 +841,7 @@
<plugin>
<groupId>org.eclipse.tycho.extras</groupId>
<artifactId>tycho-eclipserun-plugin</artifactId>
- <!-- this is actually present in any 0.14+ version -->
- <version>${tycho-extras.version}</version>
<configuration>
- <repositories>
- <repository>
- <id>eclipse</id>
- <layout>p2</layout>
- <url>${eclipserun-repo}</url>
- </repository>
- </repositories>
- <!--
- This is to fix some lucene 3.x compatibility issues.
- Required for 4.2 and earlier. Not for 4.3 and later.
- <argLine>-Dhelp.lucene.tokenizer=standard</argLine>
- -->
<!-- actual indexer call -->
<appArgLine>-data target/apibuild-workspace -application org.eclipse.ant.core.antRunner -buildfile
target/.apibuild.xml</appArgLine>

Back to the top