Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'eclipse-platform-parent/pom.xml')
-rw-r--r--eclipse-platform-parent/pom.xml29
1 files changed, 23 insertions, 6 deletions
diff --git a/eclipse-platform-parent/pom.xml b/eclipse-platform-parent/pom.xml
index a57c260a9..524247337 100644
--- a/eclipse-platform-parent/pom.xml
+++ b/eclipse-platform-parent/pom.xml
@@ -21,6 +21,14 @@
<artifactId>eclipse-platform-parent</artifactId>
<version>4.5.0-SNAPSHOT</version>
<packaging>pom</packaging>
+ <!--
+ See maven-enforcer-plugin configuration to actually break the build if
+ run with older maven.
+ prerequisites section is kept for now as even if it doesn't break the build, it
+ is used by other plugins like versions-maven-plugin which check and warn
+ for using plugins with older than they require Maven version.
+ If version number changed in one place, be sure to change in the other.
+ -->
<prerequisites>
<maven>3.1.1</maven>
</prerequisites>
@@ -82,10 +90,10 @@
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<cbi-jdt-repo.url>https://repo.eclipse.org/content/repositories/eclipse-staging/</cbi-jdt-repo.url>
<cbi-jdt-version>3.11.0.v20150118-1315</cbi-jdt-version>
-
- <!--
- This jetty-version is used by the help system in building the JSPs,
- and should change when ever our "shipped" version of Jetty changes.
+
+ <!--
+ This jetty-version is used by the help system in building the JSPs,
+ and should change when ever our "shipped" version of Jetty changes.
-->
<jetty-version>9.2.5.v20141112</jetty-version>
@@ -138,7 +146,7 @@
</snapshotRepository>
</distributionManagement>
<pluginRepositories>
-
+
<pluginRepository>
<id>tycho</id>
<url>${tycho-repo.url}</url>
@@ -325,6 +333,14 @@
</executions>
</plugin>
<plugin>
+ <!--
+ This maven-enforcer-plugin configuration to actually break the build if
+ run with older maven.
+ prerequisites section is kept for now as even if it doesn't break the build, it
+ is used by other plugins like versions-maven-plugin which check and warn
+ for using plugins with older than they require Maven version.
+ If version number changed in one place, be sure to change in the other.
+ -->
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-enforcer-plugin</artifactId>
<version>1.4</version>
@@ -718,7 +734,8 @@
<!-- this is to fix some lucene 3.x compatibility issue -->
<argLine>-Dhelp.lucene.tokenizer=standard</argLine>
<!-- actuall indexer call -->
- <appArgLine>-data target/apibuild-workspace -application org.eclipse.ant.core.antRunner -buildfile target/.apibuild.xml</appArgLine>
+ <appArgLine>-data target/apibuild-workspace -application org.eclipse.ant.core.antRunner -buildfile
+ target/.apibuild.xml</appArgLine>
<dependencies>
<!-- list of bundles that we need -->
<dependency>

Back to the top