Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRoland Grunberg2018-09-26 15:17:02 +0000
committerRoland Grunberg2018-09-26 20:08:42 +0000
commitd86639ec6a88e281574a421f31aa92e7ee82aaab (patch)
treef098b794c1be5e97134d2fcb4673506ad52f1a67 /containers
parent0ea3da3d4a0c9fedb0dd5e91e955d300e74bc17d (diff)
downloadorg.eclipse.linuxtools-d86639ec6a88e281574a421f31aa92e7ee82aaab.tar.gz
org.eclipse.linuxtools-d86639ec6a88e281574a421f31aa92e7ee82aaab.tar.xz
org.eclipse.linuxtools-d86639ec6a88e281574a421f31aa92e7ee82aaab.zip
Bug 539483 - Provide javax.xml.bind for TP and generated repository.
- Java 11 does not provide javax.xml.bind so we must manually provide the version from Orbit - In addition, we must have a hard requirement on javax.xml.bind (temporarily) because javax.xml.bind may get resoled from 'a.jre.javase 10' at install time and equinox will ignore it at runtime. Change-Id: I798de8656bec9ce7c3be892626a83005968d5d88 Reviewed-on: https://git.eclipse.org/r/130031 Tested-by: CI Bot Reviewed-by: Roland Grunberg <rgrunber@redhat.com>
Diffstat (limited to 'containers')
-rw-r--r--containers/org.eclipse.linuxtools.docker.core/META-INF/MANIFEST.MF3
1 files changed, 2 insertions, 1 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 eb09463591..4961f532d7 100644
--- a/containers/org.eclipse.linuxtools.docker.core/META-INF/MANIFEST.MF
+++ b/containers/org.eclipse.linuxtools.docker.core/META-INF/MANIFEST.MF
@@ -18,7 +18,8 @@ Require-Bundle: org.eclipse.core.runtime;bundle-version="3.12.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",
org.eclipse.tm.terminal.view.core;bundle-version="4.0.0",
- org.eclipse.debug.core;bundle-version="3.10.100"
+ org.eclipse.debug.core;bundle-version="3.10.100",
+ javax.xml.bind;bundle-version="2.2.0"
Bundle-RequiredExecutionEnvironment: JavaSE-1.8
Bundle-ActivationPolicy: lazy
Export-Package: org.eclipse.linuxtools.docker.core,

Back to the top