Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMatthias Sohn2015-08-31 07:44:57 +0000
committerMatthias Sohn2015-08-31 20:23:40 +0000
commita95eb70482c4192cf28daef8a221b22a64fa6ce1 (patch)
treec770f14c9889f6b0e3d11af9864813c445742b01 /org.eclipse.egit.gitflow/META-INF/MANIFEST.MF
parent99cdec0cd3cce94f4ceb69364c715dfa81ee0edb (diff)
downloadegit-a95eb70482c4192cf28daef8a221b22a64fa6ce1.tar.gz
egit-a95eb70482c4192cf28daef8a221b22a64fa6ce1.tar.xz
egit-a95eb70482c4192cf28daef8a221b22a64fa6ce1.zip
Fix issues in OSGi manifests
- add missing uses-clauses of gitflow bundles - export all packages, also internal ones to allow experiments - add missing Bundle-ActivationPolicy to org.eclipse.egit.doc Bug: 476164 Change-Id: I6404cc3e35fdd6a44c6b9172f11b0a3ab830937b Signed-off-by: Matthias Sohn <matthias.sohn@sap.com>
Diffstat (limited to 'org.eclipse.egit.gitflow/META-INF/MANIFEST.MF')
-rw-r--r--org.eclipse.egit.gitflow/META-INF/MANIFEST.MF18
1 files changed, 16 insertions, 2 deletions
diff --git a/org.eclipse.egit.gitflow/META-INF/MANIFEST.MF b/org.eclipse.egit.gitflow/META-INF/MANIFEST.MF
index adedddb574..167643f33d 100644
--- a/org.eclipse.egit.gitflow/META-INF/MANIFEST.MF
+++ b/org.eclipse.egit.gitflow/META-INF/MANIFEST.MF
@@ -11,8 +11,22 @@ Bundle-Localization: plugin
Require-Bundle: org.eclipse.core.runtime,
org.eclipse.core.resources,
org.eclipse.jdt.annotation;bundle-version="[1.1.0,2.0.0)";resolution:=optional
-Export-Package: org.eclipse.egit.gitflow;version="4.1.0",
- org.eclipse.egit.gitflow.op;version="4.1.0"
+Export-Package: org.eclipse.egit.gitflow;version="4.1.0";
+ uses:="org.osgi.framework,
+ org.eclipse.jgit.transport,
+ org.eclipse.core.runtime,
+ org.eclipse.jgit.lib,
+ org.eclipse.jgit.revwalk",
+ org.eclipse.egit.gitflow.internal;x-internal:=true,
+ org.eclipse.egit.gitflow.op;version="4.1.0";
+ uses:="org.eclipse.jgit.transport,
+ org.eclipse.core.runtime.jobs,
+ org.eclipse.core.runtime,
+ org.eclipse.jgit.api,
+ org.eclipse.egit.gitflow,
+ org.eclipse.jgit.revwalk,
+ org.eclipse.jgit.lib,
+ org.eclipse.egit.core.op"
Import-Package: org.eclipse.egit.core;version="[4.1.0,4.2.0)",
org.eclipse.egit.core.internal.job;version="[4.1.0,4.2.0)",
org.eclipse.egit.core.op;version="[4.1.0,4.2.0)",

Back to the top