Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--eclipse-platform-parent/pom.xml10
1 files changed, 9 insertions, 1 deletions
diff --git a/eclipse-platform-parent/pom.xml b/eclipse-platform-parent/pom.xml
index d36670a70..48504d19b 100644
--- a/eclipse-platform-parent/pom.xml
+++ b/eclipse-platform-parent/pom.xml
@@ -99,7 +99,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.v20150126-2015</cbi-jdt-version>
+ <!-- jdt.core and jdt.compiler.apt should "match", come from same build, and be signed
+ by same certificate. See bug 462783. -->
+ <cbi-jdt-version>3.11.0.v20150317-0048</cbi-jdt-version>
+ <cbi-jdt-apt-version>1.1.100.v20150316-1618</cbi-jdt-apt-version>
<!--
This jetty-version is used by the help system in building the JSPs,
@@ -404,6 +407,11 @@
<artifactId>org.eclipse.jdt.core</artifactId>
<version>${cbi-jdt-version}</version>
</dependency>
+ <dependency>
+ <groupId>org.eclipse.jdt</groupId>
+ <artifactId>org.eclipse.jdt.compiler.apt</artifactId>
+ <version>${cbi-jdt-apt-version}</version>
+ </dependency>
</dependencies>
<configuration>
<compilerArgs>

Back to the top