diff options
author | Michael Keppler <Michael.Keppler@gmx.de> | 2019-06-21 17:39:20 +0200 |
---|---|---|
committer | Michael Keppler <Michael.Keppler@gmx.de> | 2019-06-21 17:54:06 +0200 |
commit | 4b0c192f2de569cc7039ca4b03fe9eb0e714599c (patch) | |
tree | 7d4fdb86cec703fbfebf686d48a15ecb8fcc871a /org.eclipse.jgit.ant | |
parent | 8f9697b4c182be6f4ec3eeda130bd57237f154c7 (diff) | |
download | jgit-4b0c192f2de569cc7039ca4b03fe9eb0e714599c.tar.gz jgit-4b0c192f2de569cc7039ca4b03fe9eb0e714599c.zip |
Fix bundle localization of Apache SSH bundle
The placeholders in manifest and plugin.properties did not match. To
avoid similar issues, all placeholders have been changed to
Bundle-Vendor and Bundle-Name now.
Bug:548503
Change-Id: Ibd4b9bc237b323e614506b97e5fbc99416365040
Signed-off-by: Michael Keppler <Michael.Keppler@gmx.de>
Diffstat (limited to 'org.eclipse.jgit.ant')
-rw-r--r-- | org.eclipse.jgit.ant/META-INF/MANIFEST.MF | 2 | ||||
-rw-r--r-- | org.eclipse.jgit.ant/plugin.properties | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/org.eclipse.jgit.ant/META-INF/MANIFEST.MF b/org.eclipse.jgit.ant/META-INF/MANIFEST.MF index e2f8a836ec..8dd0daa140 100644 --- a/org.eclipse.jgit.ant/META-INF/MANIFEST.MF +++ b/org.eclipse.jgit.ant/META-INF/MANIFEST.MF @@ -8,6 +8,6 @@ Bundle-RequiredExecutionEnvironment: JavaSE-1.8 Import-Package: org.apache.tools.ant, org.eclipse.jgit.storage.file;version="[5.5.0,5.6.0)" Bundle-Localization: plugin -Bundle-Vendor: %Provider-Name +Bundle-Vendor: %Bundle-Vendor Export-Package: org.eclipse.jgit.ant, org.eclipse.jgit.ant.tasks;version="5.5.0";uses:="org.apache.tools.ant.types,org.apache.tools.ant" diff --git a/org.eclipse.jgit.ant/plugin.properties b/org.eclipse.jgit.ant/plugin.properties index 47725bce85..7c9e5f04a4 100644 --- a/org.eclipse.jgit.ant/plugin.properties +++ b/org.eclipse.jgit.ant/plugin.properties @@ -1,3 +1,3 @@ #Properties file for org.eclipse.jgit.ant Bundle-Name = JGit Ant Tasks -Provider-Name = Eclipse JGit
\ No newline at end of file +Bundle-Vendor = Eclipse JGit
\ No newline at end of file |