46 lines
1.9 KiB
Diff
46 lines
1.9 KiB
Diff
From 77a7644525c260098740a6670bf389b3957b746a Mon Sep 17 00:00:00 2001
|
|
From: Matthias Sohn <a@a.com>
|
|
Date: Sun, 16 Jun 2019 02:30:10 +0200
|
|
Subject: [PATCH 2/2] Ensure all packages are exported
|
|
|
|
This wasn't the case for the bundles
|
|
- org.eclipse.jgit.ant
|
|
- org.eclipse.jgit.archive
|
|
|
|
Change-Id: Ibefcc82174fe23a9c1afb765099957414ac3556b
|
|
Signed-off-by: Matthias Sohn <matthias.sohn@sap.com>---
|
|
org.eclipse.jgit.ant/META-INF/MANIFEST.MF | 4 ++--
|
|
org.eclipse.jgit.archive/META-INF/MANIFEST.MF | 3 ++-
|
|
2 files changed, 4 insertions(+), 3 deletions(-)
|
|
---
|
|
org.eclipse.jgit.ant/META-INF/MANIFEST.MF | 4 ++--
|
|
org.eclipse.jgit.archive/META-INF/MANIFEST.MF | 3 ++-
|
|
2 files changed, 4 insertions(+), 3 deletions(-)
|
|
|
|
diff --git a/org.eclipse.jgit.ant/META-INF/MANIFEST.MF b/org.eclipse.jgit.ant/META-INF/MANIFEST.MF
|
|
index bb61635..7b24bf6 100644
|
|
--- a/org.eclipse.jgit.ant/META-INF/MANIFEST.MF
|
|
+++ b/org.eclipse.jgit.ant/META-INF/MANIFEST.MF
|
|
@@ -9,5 +9,5 @@ Import-Package: org.apache.tools.ant,
|
|
org.eclipse.jgit.storage.file;version="[5.4.0,5.5.0)"
|
|
Bundle-Localization: plugin
|
|
Bundle-Vendor: %Provider-Name
|
|
-Export-Package: org.eclipse.jgit.ant.tasks;version="5.4.0";
|
|
- uses:="org.apache.tools.ant.types,org.apache.tools.ant"
|
|
+Export-Package: org.eclipse.jgit.ant,
|
|
+ org.eclipse.jgit.ant.tasks;version="5.4.0";uses:="org.apache.tools.ant.types,org.apache.tools.ant"
|
|
diff --git a/org.eclipse.jgit.archive/META-INF/MANIFEST.MF b/org.eclipse.jgit.archive/META-INF/MANIFEST.MF
|
|
index 1fa5e8c..0eabf1f 100644
|
|
--- a/org.eclipse.jgit.archive/META-INF/MANIFEST.MF
|
|
+++ b/org.eclipse.jgit.archive/META-INF/MANIFEST.MF
|
|
@@ -25,4 +25,5 @@ Export-Package: org.eclipse.jgit.archive;version="5.4.0";
|
|
uses:="org.eclipse.jgit.lib,
|
|
org.eclipse.jgit.api,
|
|
org.apache.commons.compress.archivers,
|
|
- org.osgi.framework"
|
|
+ org.osgi.framework",
|
|
+ org.eclipse.jgit.archive.internal;x-internal:=true
|
|
--
|
|
2.20.1
|
|
|