diff options
author | Matthias Sohn <matthias.sohn@sap.com> | 2013-01-04 01:40:29 +0100 |
---|---|---|
committer | Matthias Sohn <matthias.sohn@sap.com> | 2013-01-05 18:30:08 +0100 |
commit | 00739e6f708465d43d7756e0a3ad5a699bf869cb (patch) | |
tree | 98ff64af3eae5d14c97105c4ba9023ce08e7d258 /org.eclipse.jgit.packaging/org.eclipse.jgit.feature | |
parent | c8c258169f8c46ef8ea959cd6d5b705237876ba8 (diff) | |
download | jgit-00739e6f708465d43d7756e0a3ad5a699bf869cb.tar.gz jgit-00739e6f708465d43d7756e0a3ad5a699bf869cb.zip |
Do not install unnecessary Orbit bundles
The org.eclipse.jgit.orbit.feature introduced recently in order to
install 3rd party Orbit dependencies is a too coarse grained approach
and has the effect to install some dependencies only needed for
org.eclipse.jgit.pgm when installing org.eclipse.jgit.feature.
Hence include the required 3rd party bundles into the respective jgit
features directly in order to avoid this problem.
Bug: 397356
Change-Id: I3a4a07de42808e787515a6865875d9513542d3f8
Signed-off-by: Matthias Sohn <matthias.sohn@sap.com>
Diffstat (limited to 'org.eclipse.jgit.packaging/org.eclipse.jgit.feature')
-rw-r--r-- | org.eclipse.jgit.packaging/org.eclipse.jgit.feature/feature.xml | 14 |
1 files changed, 6 insertions, 8 deletions
diff --git a/org.eclipse.jgit.packaging/org.eclipse.jgit.feature/feature.xml b/org.eclipse.jgit.packaging/org.eclipse.jgit.feature/feature.xml index b0677300eb..78d28e0e96 100644 --- a/org.eclipse.jgit.packaging/org.eclipse.jgit.feature/feature.xml +++ b/org.eclipse.jgit.packaging/org.eclipse.jgit.feature/feature.xml @@ -22,14 +22,6 @@ <discovery label="%updateSiteName" url="http://download.eclipse.org/egit/updates"/> </url> - <includes - id="org.eclipse.jgit.orbit" - version="0.0.0"/> - - <requires> - <import plugin="com.jcraft.jsch"/> - </requires> - <plugin id="org.eclipse.jgit" download-size="0" @@ -37,4 +29,10 @@ version="0.0.0" unpack="false"/> + <plugin + id="com.jcraft.jsch" + download-size="0" + install-size="0" + version="0.0.0" + unpack="false"/> </feature> |