Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJay Arthanareeswaran2018-03-14 10:10:07 +0000
committerJay Arthanareeswaran2018-03-14 11:34:23 +0000
commit9d60ece456a50537166460b9f7f4ecdad37d72e5 (patch)
tree4840ee5a9c0e75cf4c3f51165981d5e43aa64eaf /org.eclipse.jdt.compiler.tool
parentf55d69502d5f7bd50a6bad98a6e170aeddab8ae6 (diff)
downloadeclipse.jdt.core-9d60ece456a50537166460b9f7f4ecdad37d72e5.tar.gz
eclipse.jdt.core-9d60ece456a50537166460b9f7f4ecdad37d72e5.tar.xz
eclipse.jdt.core-9d60ece456a50537166460b9f7f4ecdad37d72e5.zip
Bug 530444 - [10] JSR 269 API changesY20180315-1000
Include the API from java.compiler module (as a plain old JAR) to the relevant projects. Change-Id: If2fe8656c50a286d38adb8c4d91eda4fbaee5261 Signed-off-by: Jay Arthanareeswaran <jarthana@in.ibm.com>
Diffstat (limited to 'org.eclipse.jdt.compiler.tool')
-rw-r--r--org.eclipse.jdt.compiler.tool/.classpath2
-rw-r--r--org.eclipse.jdt.compiler.tool/META-INF/MANIFEST.MF2
-rw-r--r--org.eclipse.jdt.compiler.tool/build.properties6
-rw-r--r--org.eclipse.jdt.compiler.tool/lib/java10api.jarbin0 -> 109915 bytes
-rw-r--r--org.eclipse.jdt.compiler.tool/lib/java9api.jarbin25089 -> 0 bytes
5 files changed, 5 insertions, 5 deletions
diff --git a/org.eclipse.jdt.compiler.tool/.classpath b/org.eclipse.jdt.compiler.tool/.classpath
index 2ae2e50653..a3b97caae2 100644
--- a/org.eclipse.jdt.compiler.tool/.classpath
+++ b/org.eclipse.jdt.compiler.tool/.classpath
@@ -2,7 +2,7 @@
<classpath>
<classpathentry kind="src" path="src"/>
<classpathentry kind="con" path="org.eclipse.pde.core.requiredPlugins"/>
- <classpathentry kind="lib" path="lib/java9api.jar"/>
+ <classpathentry kind="lib" path="lib/java10api.jar"/>
<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/JavaSE-1.8"/>
<classpathentry kind="output" path="bin"/>
</classpath>
diff --git a/org.eclipse.jdt.compiler.tool/META-INF/MANIFEST.MF b/org.eclipse.jdt.compiler.tool/META-INF/MANIFEST.MF
index 9040560f3e..dec9901de6 100644
--- a/org.eclipse.jdt.compiler.tool/META-INF/MANIFEST.MF
+++ b/org.eclipse.jdt.compiler.tool/META-INF/MANIFEST.MF
@@ -9,6 +9,6 @@ Bundle-RequiredExecutionEnvironment: JavaSE-1.8
Export-Package: META-INF.services,
org.eclipse.jdt.internal.compiler.tool;x-internal:=true
Fragment-Host: org.eclipse.jdt.core;bundle-version="[3.3.0,4.0.0)"
-Bundle-ClassPath: lib/java9api.jar,
+Bundle-ClassPath: lib/java10api.jar,
.
Automatic-Module-Name: org.eclipse.jdt.compiler.tool
diff --git a/org.eclipse.jdt.compiler.tool/build.properties b/org.eclipse.jdt.compiler.tool/build.properties
index 5158a97629..fbdbd84368 100644
--- a/org.eclipse.jdt.compiler.tool/build.properties
+++ b/org.eclipse.jdt.compiler.tool/build.properties
@@ -1,5 +1,5 @@
###############################################################################
-# Copyright (c) 2000, 2017 IBM Corporation and others.
+# Copyright (c) 2000, 2018 IBM Corporation and others.
# All rights reserved. This program and the accompanying materials
# are made available under the terms of the Eclipse Public License v1.0
# which accompanies this distribution, and is available at
@@ -15,6 +15,6 @@ bin.includes = META-INF/,\
.,\
about.html,\
compiler_tool_fragment.properties,\
- lib/java9api.jar
+ lib/java10api.jar
src.includes = about.html
-jars.extra.classpath = lib/java9api.jar \ No newline at end of file
+jars.extra.classpath = lib/java10api.jar \ No newline at end of file
diff --git a/org.eclipse.jdt.compiler.tool/lib/java10api.jar b/org.eclipse.jdt.compiler.tool/lib/java10api.jar
new file mode 100644
index 0000000000..464b69134f
--- /dev/null
+++ b/org.eclipse.jdt.compiler.tool/lib/java10api.jar
Binary files differ
diff --git a/org.eclipse.jdt.compiler.tool/lib/java9api.jar b/org.eclipse.jdt.compiler.tool/lib/java9api.jar
deleted file mode 100644
index fd56ad100e..0000000000
--- a/org.eclipse.jdt.compiler.tool/lib/java9api.jar
+++ /dev/null
Binary files differ

Back to the top