Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorVictor Rubezhny2016-10-28 01:28:02 +0000
committerVictor Rubezhny2016-10-28 01:28:02 +0000
commitaec340469ef1854e63e676f0252b4c01e48e7100 (patch)
treee6be6c3283a901066d36ae768a43137a9e382a84
parent9d5b61e161310a16454a640b05e491eae2080688 (diff)
downloadwebtools.jsdt-aec340469ef1854e63e676f0252b4c01e48e7100.tar.gz
webtools.jsdt-aec340469ef1854e63e676f0252b4c01e48e7100.tar.xz
webtools.jsdt-aec340469ef1854e63e676f0252b4c01e48e7100.zip
Bug 506636 - Fix org.eclipse.wst.jsdt.nashorn.extension to work with org.eclipse.osgi 3.12.0
Required Execution Environment is updated Signed-off-by: Victor Rubezhny <vrubezhny@redhat.com>
-rw-r--r--nashorn/org.eclipse.wst.jsdt.nashorn.extension/.classpath2
-rw-r--r--nashorn/org.eclipse.wst.jsdt.nashorn.extension/META-INF/MANIFEST.MF4
-rw-r--r--nashorn/org.eclipse.wst.jsdt.nashorn.extension/pom.xml2
3 files changed, 4 insertions, 4 deletions
diff --git a/nashorn/org.eclipse.wst.jsdt.nashorn.extension/.classpath b/nashorn/org.eclipse.wst.jsdt.nashorn.extension/.classpath
index ad32c83a7..eca7bdba8 100644
--- a/nashorn/org.eclipse.wst.jsdt.nashorn.extension/.classpath
+++ b/nashorn/org.eclipse.wst.jsdt.nashorn.extension/.classpath
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="UTF-8"?>
<classpath>
- <classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/JavaSE-1.6"/>
+ <classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/JavaSE-1.8"/>
<classpathentry kind="con" path="org.eclipse.pde.core.requiredPlugins"/>
<classpathentry kind="src" path="src"/>
<classpathentry kind="output" path="bin"/>
diff --git a/nashorn/org.eclipse.wst.jsdt.nashorn.extension/META-INF/MANIFEST.MF b/nashorn/org.eclipse.wst.jsdt.nashorn.extension/META-INF/MANIFEST.MF
index d8959892c..9991c468e 100644
--- a/nashorn/org.eclipse.wst.jsdt.nashorn.extension/META-INF/MANIFEST.MF
+++ b/nashorn/org.eclipse.wst.jsdt.nashorn.extension/META-INF/MANIFEST.MF
@@ -1,11 +1,11 @@
Manifest-Version: 1.0
Bundle-ManifestVersion: 2
Bundle-SymbolicName: org.eclipse.wst.jsdt.nashorn.extension
-Bundle-Version: 1.0.0.qualifier
+Bundle-Version: 1.0.2.qualifier
Bundle-Name: Nashorn Classloader
Bundle-Vendor: Eclipse Web Tools Platform
Fragment-Host: org.eclipse.osgi;bundle-version="3.10.0"
-Bundle-RequiredExecutionEnvironment: JavaSE-1.6
+Bundle-RequiredExecutionEnvironment: JavaSE-1.8
Provide-Capability: nashorn.extension.classpath
Export-Package: org.eclipse.wst.jsdt.nashorn.extension.loader
diff --git a/nashorn/org.eclipse.wst.jsdt.nashorn.extension/pom.xml b/nashorn/org.eclipse.wst.jsdt.nashorn.extension/pom.xml
index 151b54e23..c3d2f9e92 100644
--- a/nashorn/org.eclipse.wst.jsdt.nashorn.extension/pom.xml
+++ b/nashorn/org.eclipse.wst.jsdt.nashorn.extension/pom.xml
@@ -21,6 +21,6 @@
<groupId>org.eclipse.webtools.jsdt.nashorn</groupId>
<artifactId>org.eclipse.wst.jsdt.nashorn.extension</artifactId>
- <version>1.0.0-SNAPSHOT</version>
+ <version>1.0.2-SNAPSHOT</version>
<packaging>eclipse-plugin</packaging>
</project>

Back to the top