[PATCH] Set required execution enviroment
From: Robin Rosenberg <hidden>
Date: 2016-06-15 22:43:10
Subsystem:
the rest · Maintainer:
Linus Torvalds
This is required to be able to export the plugin to jar files, at least using Eclipse 3.3 M7, otherwise the compiler assumes 1.4 syntax and compilation fails. Signed-off-by: Robin Rosenberg <redacted> --- org.spearce.egit.core.test/META-INF/MANIFEST.MF | 1 + org.spearce.egit.core/META-INF/MANIFEST.MF | 1 + org.spearce.egit.ui/META-INF/MANIFEST.MF | 1 + org.spearce.jgit/META-INF/MANIFEST.MF | 1 + 4 files changed, 4 insertions(+), 0 deletions(-)
diff --git a/org.spearce.egit.core.test/META-INF/MANIFEST.MF b/org.spearce.egit.core.test/META-INF/MANIFEST.MF
index e553c1e..b0f365d 100644
--- a/org.spearce.egit.core.test/META-INF/MANIFEST.MF
+++ b/org.spearce.egit.core.test/META-INF/MANIFEST.MF@@ -17,3 +17,4 @@ Import-Package: org.eclipse.core.resources, org.eclipse.jdt.junit, org.eclipse.jdt.launching Export-Package: org.spearce.egit.core.internal.mapping +Bundle-RequiredExecutionEnvironment: J2SE-1.5
diff --git a/org.spearce.egit.core/META-INF/MANIFEST.MF b/org.spearce.egit.core/META-INF/MANIFEST.MF
index e3cfc13..384b87e 100644
--- a/org.spearce.egit.core/META-INF/MANIFEST.MF
+++ b/org.spearce.egit.core/META-INF/MANIFEST.MF@@ -17,3 +17,4 @@ Export-Package: org.spearce.egit.core.internal.mapping;x-friends:="org.spearce.e org.spearce.egit.core.op, org.spearce.egit.core.project Eclipse-LazyStart: true +Bundle-RequiredExecutionEnvironment: J2SE-1.5
diff --git a/org.spearce.egit.ui/META-INF/MANIFEST.MF b/org.spearce.egit.ui/META-INF/MANIFEST.MF
index 9857e3f..e1dcc12 100644
--- a/org.spearce.egit.ui/META-INF/MANIFEST.MF
+++ b/org.spearce.egit.ui/META-INF/MANIFEST.MF@@ -19,3 +19,4 @@ Require-Bundle: org.eclipse.core.runtime, org.spearce.jgit, org.spearce.egit.core Eclipse-LazyStart: true +Bundle-RequiredExecutionEnvironment: J2SE-1.5
diff --git a/org.spearce.jgit/META-INF/MANIFEST.MF b/org.spearce.jgit/META-INF/MANIFEST.MF
index 3f9d29c..c5c0e0a 100644
--- a/org.spearce.jgit/META-INF/MANIFEST.MF
+++ b/org.spearce.jgit/META-INF/MANIFEST.MF@@ -9,3 +9,4 @@ Export-Package: org.spearce.jgit.errors, org.spearce.jgit.lib Require-Bundle: org.junit Eclipse-LazyStart: true +Bundle-RequiredExecutionEnvironment: J2SE-1.5
--
1.5.1.1