Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorStephan Herrmann2016-11-10 20:49:16 +0000
committerStephan Herrmann2016-11-10 20:49:16 +0000
commit02c1646820df96c116c2ec7fa97617f7b30021e4 (patch)
treeef6de2a6243fe35007fcf235f3966c4b364dd752 /releng/build-scripts
parentae1619916aceadd6d89b31fa7726010119932d82 (diff)
downloadorg.eclipse.objectteams-02c1646820df96c116c2ec7fa97617f7b30021e4.tar.gz
org.eclipse.objectteams-02c1646820df96c116c2ec7fa97617f7b30021e4.tar.xz
org.eclipse.objectteams-02c1646820df96c116c2ec7fa97617f7b30021e4.zip
Bug 507370: ecotj.jar does not contain necessary classes for annotation
processing - fix version of existing fragments
Diffstat (limited to 'releng/build-scripts')
-rw-r--r--releng/build-scripts/build/run.properties4
-rw-r--r--releng/build-scripts/build/run.xml6
2 files changed, 8 insertions, 2 deletions
diff --git a/releng/build-scripts/build/run.properties b/releng/build-scripts/build/run.properties
index 046475143..82ba1f727 100644
--- a/releng/build-scripts/build/run.properties
+++ b/releng/build-scripts/build/run.properties
@@ -25,6 +25,10 @@ org.eclipse.equinox.launcher_jar=org.eclipse.equinox.launcher_1.4.0.v20160926-15
# for patching our patch feature to match this version with any suffix:
jdt.feature.version=3.13.0.v20161027-0700
jdt.feature.version.next=3.13.0.v20161027-0701
+
+# jdt.core fragments for extracting pre-built classes and properties:
+jdt.compiler.apt=1.3.0.v20160907-0458
+jdt.compiler.tool=1.2.0.v20160907-0458
# -----------------------------------------------------------
#Git Support for PDE BUILD:
diff --git a/releng/build-scripts/build/run.xml b/releng/build-scripts/build/run.xml
index 1d83f4c1a..f1caa8377 100644
--- a/releng/build-scripts/build/run.xml
+++ b/releng/build-scripts/build/run.xml
@@ -253,7 +253,8 @@ path to map file (with substitutions):
<arg value="-DfetchCacheLocation=${fetchCacheLocation}"/>
<arg value="-Declipse-app.tgz=${eclipse-app.tgz}"/>
<arg value="-Declipse.tests.zip=${eclipse.tests.zip}"/>
- <arg value="-Declipse.sdk.qualifier=${eclipse.sdk.qualifier}"/>
+ <arg value="-Djdt.compiler.apt=${eclipse.compiler.apt}"/>
+ <arg value="-Djdt.compiler.tool=${eclipse.compiler.tool}"/>
<!--arg value="-verbose" /-->
<jvmarg value="${vm.args}"/>
</java>
@@ -337,7 +338,8 @@ path to map file (with substitutions):
<arg value="-Ddo.build.all=${do.build.all}"/>
<arg value="-Declipse-app.tgz=${eclipse-app.tgz}"/>
<arg value="-Declipse.tests.zip=${eclipse.tests.zip}"/>
- <arg value="-Declipse.sdk.qualifier=${eclipse.sdk.qualifier}"/>
+ <arg value="-Djdt.compiler.apt=${eclipse.compiler.apt}"/>
+ <arg value="-Djdt.compiler.tool=${eclipse.compiler.tool}"/>
<!--arg value="-verbose" /-->
<jvmarg value="${vm.args}"/>
<!-- arg value="${verboseAnt}"/ -->

Back to the top