Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMatthias Sohn2015-08-31 07:38:18 +0000
committerMatthias Sohn2015-08-31 09:34:06 +0000
commit3a4a5a4e57f41c595ba950ea6f6680260669bf34 (patch)
tree01205dad24fd52ea85348f0e51b46ae8bd948909 /org.eclipse.jgit/META-INF
parent05acf1c62f415e263d835ae991268e97e7f7ced3 (diff)
downloadjgit-3a4a5a4e57f41c595ba950ea6f6680260669bf34.tar.gz
jgit-3a4a5a4e57f41c595ba950ea6f6680260669bf34.tar.xz
jgit-3a4a5a4e57f41c595ba950ea6f6680260669bf34.zip
Update uses-clauses in OSGi manifests
In Bug 476164 it was reported that EGit doesn't start when the platform comes with jsch 0.1.51 while this version of EGit/JGit brings jsch 0.1.53. This could be caused by outdated uses-clauses. Hence recompute them using PDE tooling. Bug: 476164 Change-Id: I185ba097884ead9cd034eba842bd3bf34181a99b Signed-off-by: Matthias Sohn <matthias.sohn@sap.com>
Diffstat (limited to 'org.eclipse.jgit/META-INF')
-rw-r--r--org.eclipse.jgit/META-INF/MANIFEST.MF21
1 files changed, 14 insertions, 7 deletions
diff --git a/org.eclipse.jgit/META-INF/MANIFEST.MF b/org.eclipse.jgit/META-INF/MANIFEST.MF
index b696f7f9dd..c12d7032a4 100644
--- a/org.eclipse.jgit/META-INF/MANIFEST.MF
+++ b/org.eclipse.jgit/META-INF/MANIFEST.MF
@@ -20,7 +20,8 @@ Export-Package: org.eclipse.jgit.api;version="4.1.0";
org.eclipse.jgit.transport,
org.eclipse.jgit.merge",
org.eclipse.jgit.api.errors;version="4.1.0";
- uses:="org.eclipse.jgit.lib,org.eclipse.jgit.errors",
+ uses:="org.eclipse.jgit.lib,
+ org.eclipse.jgit.errors",
org.eclipse.jgit.attributes;version="4.1.0",
org.eclipse.jgit.blame;version="4.1.0";
uses:="org.eclipse.jgit.lib,
@@ -51,9 +52,12 @@ Export-Package: org.eclipse.jgit.api;version="4.1.0";
org.eclipse.jgit.gitrepo;version="4.1.0";
uses:="org.eclipse.jgit.api,
org.eclipse.jgit.lib,
- org.eclipse.jgit.revwalk",
+ org.eclipse.jgit.revwalk,
+ org.xml.sax.helpers,
+ org.xml.sax",
org.eclipse.jgit.gitrepo.internal;version="4.1.0";x-internal:=true,
- org.eclipse.jgit.hooks;version="4.1.0",
+ org.eclipse.jgit.hooks;version="4.1.0";
+ uses:="org.eclipse.jgit.lib",
org.eclipse.jgit.ignore;version="4.1.0",
org.eclipse.jgit.ignore.internal;version="4.1.0";x-friends:="org.eclipse.jgit.test",
org.eclipse.jgit.internal;version="4.1.0";x-friends:="org.eclipse.jgit.test,org.eclipse.jgit.http.test",
@@ -92,7 +96,8 @@ Export-Package: org.eclipse.jgit.api;version="4.1.0";
org.eclipse.jgit.revwalk,
org.eclipse.jgit.merge",
org.eclipse.jgit.patch;version="4.1.0";
- uses:="org.eclipse.jgit.lib,org.eclipse.jgit.diff",
+ uses:="org.eclipse.jgit.lib,
+ org.eclipse.jgit.diff",
org.eclipse.jgit.revplot;version="4.1.0";
uses:="org.eclipse.jgit.lib,
org.eclipse.jgit.revwalk",
@@ -103,9 +108,12 @@ Export-Package: org.eclipse.jgit.api;version="4.1.0";
org.eclipse.jgit.diff,
org.eclipse.jgit.revwalk.filter",
org.eclipse.jgit.revwalk.filter;version="4.1.0";
- uses:="org.eclipse.jgit.revwalk,org.eclipse.jgit.util",
+ uses:="org.eclipse.jgit.revwalk,
+ org.eclipse.jgit.lib,
+ org.eclipse.jgit.util",
org.eclipse.jgit.storage.file;version="4.1.0";
- uses:="org.eclipse.jgit.lib,org.eclipse.jgit.util",
+ uses:="org.eclipse.jgit.lib,
+ org.eclipse.jgit.util",
org.eclipse.jgit.storage.pack;version="4.1.0";
uses:="org.eclipse.jgit.lib",
org.eclipse.jgit.submodule;version="4.1.0";
@@ -144,7 +152,6 @@ Export-Package: org.eclipse.jgit.api;version="4.1.0";
org.eclipse.jgit.storage.file,
org.ietf.jgss",
org.eclipse.jgit.util.io;version="4.1.0"
-Bundle-ActivationPolicy: lazy
Bundle-RequiredExecutionEnvironment: JavaSE-1.7
Require-Bundle: com.jcraft.jsch;bundle-version="[0.1.37,0.2.0)",
org.eclipse.jdt.annotation;bundle-version="[1.1.0,2.0.0)";resolution:=optional

Back to the top