diff options
| author | Simon Scholz | 2015-09-28 10:34:18 +0000 |
|---|---|---|
| committer | Simon Scholz | 2015-09-28 11:56:51 +0000 |
| commit | 5e2ca9d1501a11fa56ef0de27bfc3d9884216a51 (patch) | |
| tree | d7e1ffad81e87a7d40b5afcaefdd7752c6ea2050 | |
| parent | fe5f5f7ccc83b1d9528a661e90d4fe3e72a9d4ba (diff) | |
| download | eclipse.platform.ui-5e2ca9d1501a11fa56ef0de27bfc3d9884216a51.tar.gz eclipse.platform.ui-5e2ca9d1501a11fa56ef0de27bfc3d9884216a51.tar.xz eclipse.platform.ui-5e2ca9d1501a11fa56ef0de27bfc3d9884216a51.zip | |
Bug 478236 - Update databinding plug-ins to Java 8
Change-Id: I6b334ec2854349e2e1f7207ab5dd901571fdc704
Signed-off-by: Simon Scholz <simon.scholz@vogella.com>
5 files changed, 7 insertions, 8 deletions
diff --git a/bundles/org.eclipse.core.databinding/.classpath b/bundles/org.eclipse.core.databinding/.classpath index e8ea977a694..4f83b2397ec 100644 --- a/bundles/org.eclipse.core.databinding/.classpath +++ b/bundles/org.eclipse.core.databinding/.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/.settings/org.eclipse.jdt.core.prefs b/bundles/org.eclipse.core.databinding/.settings/org.eclipse.jdt.core.prefs index fc709c2909a..8a3e122b6b7 100644 --- a/bundles/org.eclipse.core.databinding/.settings/org.eclipse.jdt.core.prefs +++ b/bundles/org.eclipse.core.databinding/.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/META-INF/MANIFEST.MF b/bundles/org.eclipse.core.databinding/META-INF/MANIFEST.MF index 2fbaaff50e7..55c855dde5c 100644 --- a/bundles/org.eclipse.core.databinding/META-INF/MANIFEST.MF +++ b/bundles/org.eclipse.core.databinding/META-INF/MANIFEST.MF @@ -2,7 +2,7 @@ Manifest-Version: 1.0 Bundle-ManifestVersion: 2 Bundle-Name: %pluginName Bundle-SymbolicName: org.eclipse.core.databinding -Bundle-Version: 1.5.0.qualifier +Bundle-Version: 1.6.0.qualifier Bundle-ClassPath: . Bundle-Vendor: %providerName Bundle-Localization: plugin @@ -20,6 +20,6 @@ Import-Package: com.ibm.icu.math;resolution:=optional, org.osgi.framework;version="[1.4.0,2.0.0)";resolution:=optional, org.osgi.util.tracker;version="[1.3.3,2.0.0)";resolution:=optional, org.eclipse.osgi.framework.log;version="[1.0.0,2.0.0)";resolution:=optional -Bundle-RequiredExecutionEnvironment: JavaSE-1.7 +Bundle-RequiredExecutionEnvironment: JavaSE-1.8 Bundle-Activator: org.eclipse.core.internal.databinding.Activator Bundle-ActivationPolicy: lazy diff --git a/bundles/org.eclipse.core.databinding/build.properties b/bundles/org.eclipse.core.databinding/build.properties index c1999c9ce68..48a8a2f7007 100644 --- a/bundles/org.eclipse.core.databinding/build.properties +++ b/bundles/org.eclipse.core.databinding/build.properties @@ -15,4 +15,3 @@ bin.includes = .,\ plugin.properties,\ about.html src.includes = about.html -jre.compilation.profile = JavaSE-1.7 diff --git a/bundles/org.eclipse.core.databinding/pom.xml b/bundles/org.eclipse.core.databinding/pom.xml index 6d8bb607edc..bfb39e39539 100644 --- a/bundles/org.eclipse.core.databinding/pom.xml +++ b/bundles/org.eclipse.core.databinding/pom.xml @@ -20,7 +20,7 @@ </parent> <groupId>org.eclipse.core</groupId> <artifactId>org.eclipse.core.databinding</artifactId> - <version>1.5.0-SNAPSHOT</version> + <version>1.6.0-SNAPSHOT</version> <packaging>eclipse-plugin</packaging> <build> |
