Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
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