Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorslewis2018-03-02 02:50:37 +0000
committerslewis2018-03-02 02:50:37 +0000
commit4114f220ca71c3fa25b98c712f43736ade8b57e1 (patch)
treec7048ae547b0aa7e40e61817d42e9cc5a3572a9a /protocols/bundles
parentf0018fcf28388e0281df66e0e01a0852a9bb74c1 (diff)
downloadorg.eclipse.ecf-4114f220ca71c3fa25b98c712f43736ade8b57e1.tar.gz
org.eclipse.ecf-4114f220ca71c3fa25b98c712f43736ade8b57e1.tar.xz
org.eclipse.ecf-4114f220ca71c3fa25b98c712f43736ade8b57e1.zip
fixes for bug https://bugs.eclipse.org/bugs/show_bug.cgi?id=530952
Diffstat (limited to 'protocols/bundles')
-rw-r--r--protocols/bundles/ch.ethz.iks.r_osgi.remote/META-INF/MANIFEST.MF13
-rw-r--r--protocols/bundles/ch.ethz.iks.r_osgi.remote/build.properties2
-rw-r--r--protocols/bundles/ch.ethz.iks.r_osgi.remote/pom.xml2
-rw-r--r--protocols/bundles/ch.ethz.iks.slp/META-INF/MANIFEST.MF6
-rw-r--r--protocols/bundles/ch.ethz.iks.slp/pom.xml2
5 files changed, 14 insertions, 11 deletions
diff --git a/protocols/bundles/ch.ethz.iks.r_osgi.remote/META-INF/MANIFEST.MF b/protocols/bundles/ch.ethz.iks.r_osgi.remote/META-INF/MANIFEST.MF
index bbdf2bb8a..000f04f2c 100644
--- a/protocols/bundles/ch.ethz.iks.r_osgi.remote/META-INF/MANIFEST.MF
+++ b/protocols/bundles/ch.ethz.iks.r_osgi.remote/META-INF/MANIFEST.MF
@@ -2,14 +2,15 @@ Manifest-Version: 1.0
Bundle-ManifestVersion: 2
Bundle-Name: %plugin.name
Bundle-SymbolicName: ch.ethz.iks.r_osgi.remote
-Bundle-Version: 1.0.9.qualifier
+Automatic-Module-Name: ch.ethz.iks.r_osgi.remote
+Bundle-Version: 1.0.100.qualifier
Bundle-Vendor: %plugin.provider
Import-Package: org.objectweb.asm;version="[5.0.1,6.0.0)",
- org.osgi.framework,
- org.osgi.service.event,
- org.osgi.service.log,
- org.osgi.service.packageadmin,
- org.osgi.util.tracker
+ org.osgi.framework;version="[1.0.0,2.0.0)",
+ org.osgi.service.event;version="[1.0.0,2.0.0)",
+ org.osgi.service.log;version="[1.0.0,2.0.0)",
+ org.osgi.service.packageadmin;version="[1.0.0,2.0.0)",
+ org.osgi.util.tracker;version="[1.0.0,2.0.0)"
Export-Package: ch.ethz.iks.r_osgi;version="1.0.9",
ch.ethz.iks.r_osgi.channels;version="1.0.1",
ch.ethz.iks.r_osgi.messages;version="1.0.1",
diff --git a/protocols/bundles/ch.ethz.iks.r_osgi.remote/build.properties b/protocols/bundles/ch.ethz.iks.r_osgi.remote/build.properties
index 532cc5991..d45a961ba 100644
--- a/protocols/bundles/ch.ethz.iks.r_osgi.remote/build.properties
+++ b/protocols/bundles/ch.ethz.iks.r_osgi.remote/build.properties
@@ -7,5 +7,5 @@ bin.includes = META-INF/,\
LICENSE.txt
src.includes = about.html,\
LICENSE.txt
-jre.compilation.profile = J2SE-1.4
+jre.compilation.profile = J2SE-1.3
javacWarnings.. = -assertIdentifier,-enumIdentifier
diff --git a/protocols/bundles/ch.ethz.iks.r_osgi.remote/pom.xml b/protocols/bundles/ch.ethz.iks.r_osgi.remote/pom.xml
index a74c66bde..f597064c2 100644
--- a/protocols/bundles/ch.ethz.iks.r_osgi.remote/pom.xml
+++ b/protocols/bundles/ch.ethz.iks.r_osgi.remote/pom.xml
@@ -10,6 +10,6 @@
</parent>
<groupId>org.eclipse.ecf</groupId>
<artifactId>ch.ethz.iks.r_osgi.remote</artifactId>
- <version>1.0.9-SNAPSHOT</version>
+ <version>1.0.100-SNAPSHOT</version>
<packaging>eclipse-plugin</packaging>
</project>
diff --git a/protocols/bundles/ch.ethz.iks.slp/META-INF/MANIFEST.MF b/protocols/bundles/ch.ethz.iks.slp/META-INF/MANIFEST.MF
index b184a5924..4156ae8c1 100644
--- a/protocols/bundles/ch.ethz.iks.slp/META-INF/MANIFEST.MF
+++ b/protocols/bundles/ch.ethz.iks.slp/META-INF/MANIFEST.MF
@@ -2,11 +2,13 @@ Manifest-Version: 1.0
Bundle-ManifestVersion: 2
Bundle-Name: Service Location Protocol (RFC 2608) Implementation
Bundle-SymbolicName: ch.ethz.iks.slp
-Bundle-Version: 1.1.100.qualifier
+Automatic-Module-Name: ch.ethz.iks.slp
+Bundle-Version: 1.1.200.qualifier
Export-Package: ch.ethz.iks.slp;version="1.0.0"
Bundle-Activator: ch.ethz.iks.slp.impl.Activator
Bundle-Vendor: Eclipse.org - ECF
-Import-Package: org.osgi.framework, org.osgi.service.log
+Import-Package: org.osgi.framework;version="[1.0.0,2.0.0)",
+ org.osgi.service.log;version="[1.0.0,2.0.0)"
Bundle-Description: jSLP, the pure Java Service Location Protocol implementation
Bundle-ActivationPolicy: lazy
Bundle-RequiredExecutionEnvironment: J2SE-1.4
diff --git a/protocols/bundles/ch.ethz.iks.slp/pom.xml b/protocols/bundles/ch.ethz.iks.slp/pom.xml
index 168ca0a33..102e0ccc8 100644
--- a/protocols/bundles/ch.ethz.iks.slp/pom.xml
+++ b/protocols/bundles/ch.ethz.iks.slp/pom.xml
@@ -10,6 +10,6 @@
</parent>
<groupId>org.eclipse.ecf</groupId>
<artifactId>ch.ethz.iks.slp</artifactId>
- <version>1.1.100-SNAPSHOT</version>
+ <version>1.1.200-SNAPSHOT</version>
<packaging>eclipse-plugin</packaging>
</project>

Back to the top