Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMat Booth2017-09-20 10:18:33 +0000
committerRoland Grunberg2017-09-20 14:25:37 +0000
commit2caad600e6ff60b46296c886b5d9761bf727d905 (patch)
tree21043d9921cfb01ea99b2c141996da1fdf526bbb
parent41469333aa9a014cc30041494b14e776a7c901f5 (diff)
downloadorg.eclipse.linuxtools-2caad600e6ff60b46296c886b5d9761bf727d905.tar.gz
org.eclipse.linuxtools-2caad600e6ff60b46296c886b5d9761bf727d905.tar.xz
org.eclipse.linuxtools-2caad600e6ff60b46296c886b5d9761bf727d905.zip
Bug 522527 - Consider using import-package for javax.* APIs
This way we can consume the API no matter what the BSN of the providing bundle is Change-Id: I6ff831937bd1247d754f321e2a2114beaac059f1 Signed-off-by: Mat Booth <mat.booth@redhat.com> Reviewed-on: https://git.eclipse.org/r/105483 Tested-by: Hudson CI Reviewed-by: Roland Grunberg <rgrunber@redhat.com>
-rw-r--r--containers/org.eclipse.linuxtools.docker.core/META-INF/MANIFEST.MF7
1 files changed, 4 insertions, 3 deletions
diff --git a/containers/org.eclipse.linuxtools.docker.core/META-INF/MANIFEST.MF b/containers/org.eclipse.linuxtools.docker.core/META-INF/MANIFEST.MF
index e4a78d7ca7..2ab5042e78 100644
--- a/containers/org.eclipse.linuxtools.docker.core/META-INF/MANIFEST.MF
+++ b/containers/org.eclipse.linuxtools.docker.core/META-INF/MANIFEST.MF
@@ -14,7 +14,6 @@ Require-Bundle: org.eclipse.core.runtime;bundle-version="3.12.0",
com.spotify.docker.client;bundle-version="6.1.1",
com.github.jnr.unixsocket;bundle-version="0.4.0",
com.github.jnr.enxio;bundle-version="0.5.0",
- javax.ws.rs;bundle-version="2.0.1",
org.glassfish.jersey.core.jersey-client;bundle-version="2.14.0",
org.glassfish.jersey.media.jersey-media-json-jackson;bundle-version="2.14.0",
org.glassfish.jersey.core.jersey-common;bundle-version="2.14.0",
@@ -24,5 +23,7 @@ Bundle-RequiredExecutionEnvironment: JavaSE-1.8
Bundle-ActivationPolicy: lazy
Export-Package: org.eclipse.linuxtools.docker.core,
org.eclipse.linuxtools.internal.docker.core;x-friends:="org.eclipse.linuxtools.docker.ui,org.eclipse.linuxtools.docker.ui.tests,org.eclipse.linuxtools.docker.integration.tests"
-Import-Package: com.fasterxml.jackson.annotation;version="2.5.0"
-Bundle-ClassPath: .
+Import-Package: com.fasterxml.jackson.annotation;version="2.5.0",
+ javax.ws.rs;version="2.0.1",
+ javax.ws.rs.core;version="2.0.1",
+ javax.ws.rs.client;version="2.0.1"

Back to the top