Skip to main content
aboutsummaryrefslogtreecommitdiffstats
path: root/util
diff options
context:
space:
mode:
authorMarc Khouzam2016-06-20 13:27:40 +0000
committerGerrit Code Review @ Eclipse.org2016-06-22 18:51:43 +0000
commit9e1e981b4d88b4c585684b8c1ab6d767b3f742cb (patch)
tree0c52dc8a472573f71bdd22cb0dbf0373e5d50a6a /util
parentb46b3388e84bbe0af2b4224c36f3f6709f1b7358 (diff)
downloadorg.eclipse.cdt-9e1e981b4d88b4c585684b8c1ab6d767b3f742cb.tar.gz
org.eclipse.cdt-9e1e981b4d88b4c585684b8c1ab6d767b3f742cb.tar.xz
org.eclipse.cdt-9e1e981b4d88b4c585684b8c1ab6d767b3f742cb.zip
Move the rest of the CDT plugins to java 8
This change was generated using the script: releng/scripts/ChangeJavaVersion.sh Change-Id: I2ad96dc682a5acb8529c3edec40de279c331b5a4
Diffstat (limited to 'util')
-rw-r--r--util/org.eclipse.cdt.util/.classpath2
-rw-r--r--util/org.eclipse.cdt.util/.settings/org.eclipse.jdt.core.prefs6
-rw-r--r--util/org.eclipse.cdt.util/META-INF/MANIFEST.MF2
3 files changed, 5 insertions, 5 deletions
diff --git a/util/org.eclipse.cdt.util/.classpath b/util/org.eclipse.cdt.util/.classpath
index e8ea977a694..4f83b2397ec 100644
--- a/util/org.eclipse.cdt.util/.classpath
+++ b/util/org.eclipse.cdt.util/.classpath
@@ -2,6 +2,6 @@
<classpath>
<classpathentry kind="con" path="org.eclipse.pde.core.requiredPlugins"/>
<classpathentry kind="src" path="src"/>
- <classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/JavaSE-1.7"/>
+ <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/util/org.eclipse.cdt.util/.settings/org.eclipse.jdt.core.prefs b/util/org.eclipse.cdt.util/.settings/org.eclipse.jdt.core.prefs
index fd292a16001..64f202442ff 100644
--- a/util/org.eclipse.cdt.util/.settings/org.eclipse.jdt.core.prefs
+++ b/util/org.eclipse.cdt.util/.settings/org.eclipse.jdt.core.prefs
@@ -1,7 +1,7 @@
#Tue Apr 08 16:36:49 EDT 2008
eclipse.preferences.version=1
-org.eclipse.jdt.core.compiler.codegen.targetPlatform=1.7
-org.eclipse.jdt.core.compiler.compliance=1.7
+org.eclipse.jdt.core.compiler.codegen.targetPlatform=1.8
+org.eclipse.jdt.core.compiler.compliance=1.8
org.eclipse.jdt.core.compiler.problem.assertIdentifier=error
org.eclipse.jdt.core.compiler.problem.enumIdentifier=error
-org.eclipse.jdt.core.compiler.source=1.7
+org.eclipse.jdt.core.compiler.source=1.8
diff --git a/util/org.eclipse.cdt.util/META-INF/MANIFEST.MF b/util/org.eclipse.cdt.util/META-INF/MANIFEST.MF
index 13e869fda96..4c46e0e73d8 100644
--- a/util/org.eclipse.cdt.util/META-INF/MANIFEST.MF
+++ b/util/org.eclipse.cdt.util/META-INF/MANIFEST.MF
@@ -10,4 +10,4 @@ Require-Bundle: org.eclipse.cdt.core,
org.eclipse.core.resources
Export-Package: org.eclipse.cdt.internal.core.parser.util
Bundle-Localization: plugin
-Bundle-RequiredExecutionEnvironment: JavaSE-1.7
+Bundle-RequiredExecutionEnvironment: JavaSE-1.8

Back to the top