Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSimon Scholz2015-09-28 10:50:17 +0000
committerLars Vogel2015-09-28 14:12:38 +0000
commit68ab5a377e60b4a3853e605821f7e31ddaa1ba82 (patch)
tree6331f3c4159de4b37625f676325f087a38a7b8f1
parent5e2ca9d1501a11fa56ef0de27bfc3d9884216a51 (diff)
downloadeclipse.platform.ui-68ab5a377e60b4a3853e605821f7e31ddaa1ba82.tar.gz
eclipse.platform.ui-68ab5a377e60b4a3853e605821f7e31ddaa1ba82.tar.xz
eclipse.platform.ui-68ab5a377e60b4a3853e605821f7e31ddaa1ba82.zip
Bug 478236 - Update databinding plug-ins to Java 8
Change-Id: I8c474e03a3a6786b153a111897a5fdba1b0f5872 Signed-off-by: Simon Scholz <simon.scholz@vogella.com>
-rw-r--r--bundles/org.eclipse.core.databinding.property/.classpath2
-rw-r--r--bundles/org.eclipse.core.databinding.property/.settings/org.eclipse.jdt.core.prefs6
-rw-r--r--bundles/org.eclipse.core.databinding.property/META-INF/MANIFEST.MF2
-rw-r--r--bundles/org.eclipse.core.databinding.property/build.properties1
4 files changed, 5 insertions, 6 deletions
diff --git a/bundles/org.eclipse.core.databinding.property/.classpath b/bundles/org.eclipse.core.databinding.property/.classpath
index e8ea977a694..4f83b2397ec 100644
--- a/bundles/org.eclipse.core.databinding.property/.classpath
+++ b/bundles/org.eclipse.core.databinding.property/.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/bundles/org.eclipse.core.databinding.property/.settings/org.eclipse.jdt.core.prefs b/bundles/org.eclipse.core.databinding.property/.settings/org.eclipse.jdt.core.prefs
index fc709c2909a..8a3e122b6b7 100644
--- a/bundles/org.eclipse.core.databinding.property/.settings/org.eclipse.jdt.core.prefs
+++ b/bundles/org.eclipse.core.databinding.property/.settings/org.eclipse.jdt.core.prefs
@@ -23,9 +23,9 @@ org.eclipse.jdt.core.compiler.annotation.nullable=org.eclipse.jdt.annotation.Nul
org.eclipse.jdt.core.compiler.annotation.nullanalysis=disabled
org.eclipse.jdt.core.compiler.codegen.inlineJsrBytecode=enabled
org.eclipse.jdt.core.compiler.codegen.methodParameters=do not generate
-org.eclipse.jdt.core.compiler.codegen.targetPlatform=1.7
+org.eclipse.jdt.core.compiler.codegen.targetPlatform=1.8
org.eclipse.jdt.core.compiler.codegen.unusedLocal=preserve
-org.eclipse.jdt.core.compiler.compliance=1.7
+org.eclipse.jdt.core.compiler.compliance=1.8
org.eclipse.jdt.core.compiler.debug.lineNumber=generate
org.eclipse.jdt.core.compiler.debug.localVariable=generate
org.eclipse.jdt.core.compiler.debug.sourceFile=generate
@@ -128,7 +128,7 @@ org.eclipse.jdt.core.compiler.problem.unusedPrivateMember=error
org.eclipse.jdt.core.compiler.problem.unusedTypeParameter=ignore
org.eclipse.jdt.core.compiler.problem.unusedWarningToken=warning
org.eclipse.jdt.core.compiler.problem.varargsArgumentNeedCast=warning
-org.eclipse.jdt.core.compiler.source=1.7
+org.eclipse.jdt.core.compiler.source=1.8
org.eclipse.jdt.core.formatter.align_type_members_on_columns=false
org.eclipse.jdt.core.formatter.alignment_for_arguments_in_allocation_expression=16
org.eclipse.jdt.core.formatter.alignment_for_arguments_in_annotation=0
diff --git a/bundles/org.eclipse.core.databinding.property/META-INF/MANIFEST.MF b/bundles/org.eclipse.core.databinding.property/META-INF/MANIFEST.MF
index 7dfa346b1e6..cc5e502c68a 100644
--- a/bundles/org.eclipse.core.databinding.property/META-INF/MANIFEST.MF
+++ b/bundles/org.eclipse.core.databinding.property/META-INF/MANIFEST.MF
@@ -18,5 +18,5 @@ Export-Package: org.eclipse.core.databinding.property,
org.eclipse.core.internal.databinding.property.value;x-internal:=true
Require-Bundle: org.eclipse.equinox.common;bundle-version="[3.2.0,4.0.0)",
org.eclipse.core.databinding.observable;bundle-version="[1.3.0,2.0.0)"
-Bundle-RequiredExecutionEnvironment: JavaSE-1.7
+Bundle-RequiredExecutionEnvironment: JavaSE-1.8
Bundle-ActivationPolicy: lazy
diff --git a/bundles/org.eclipse.core.databinding.property/build.properties b/bundles/org.eclipse.core.databinding.property/build.properties
index f8162b4157b..e9d8be3560b 100644
--- a/bundles/org.eclipse.core.databinding.property/build.properties
+++ b/bundles/org.eclipse.core.databinding.property/build.properties
@@ -15,4 +15,3 @@ bin.includes = .,\
plugin.properties,\
about.html
src.includes = about.html
-jre.compilation.profile = JavaSE-1.7

Back to the top