Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRobin Rosenberg2010-04-03 21:43:44 +0000
committerRobin Rosenberg2010-04-05 10:25:06 +0000
commitfa4c3fe461064e24bc20954a713f0c09e13d6a18 (patch)
tree827e601e9ab89cb6ba37cd5a70012c3ef2b4c33f /org.eclipse.jgit.ui
parent2b6c555aee869b7ef01c5953a143ca18583af182 (diff)
downloadjgit-fa4c3fe461064e24bc20954a713f0c09e13d6a18.tar.gz
jgit-fa4c3fe461064e24bc20954a713f0c09e13d6a18.tar.xz
jgit-fa4c3fe461064e24bc20954a713f0c09e13d6a18.zip
JGit plugin not compatible with Eclipse 3.4
The JSch bundle in Eclipse 3.4 does not export its packages with version numbers. Use Require-Bundle on version 0.1.37 that comes with Eclipse 3.4 There is no 0.1.37 in the maven repositories so the pom still refers to 0.1.41 so the build can get the compile time dependencies right. Bug: 308031 CQ: 3904 jsch Version: 0.1.37 (using Orbit CQ2014) Change-Id: I12eba86bfbe584560c213882ebba58bf1f9fa0c1 Signed-off-by: Robin Rosenberg <robin.rosenberg@dewire.com>
Diffstat (limited to 'org.eclipse.jgit.ui')
-rw-r--r--org.eclipse.jgit.ui/META-INF/MANIFEST.MF6
1 files changed, 3 insertions, 3 deletions
diff --git a/org.eclipse.jgit.ui/META-INF/MANIFEST.MF b/org.eclipse.jgit.ui/META-INF/MANIFEST.MF
index d9d2faa9df..b496cd08dd 100644
--- a/org.eclipse.jgit.ui/META-INF/MANIFEST.MF
+++ b/org.eclipse.jgit.ui/META-INF/MANIFEST.MF
@@ -7,9 +7,9 @@ Bundle-Version: 0.8.0.qualifier
Bundle-Vendor: %provider_name
Bundle-RequiredExecutionEnvironment: J2SE-1.5
Export-Package: org.eclipse.jgit.awtui;version="0.8.0"
-Import-Package: com.jcraft.jsch;version="[0.1.41,0.2.0)",
- org.eclipse.jgit.lib;version="[0.8.0,0.9.0)",
- org.eclipse.jgit.transport;version="[0.8.0,0.9.0)",
+Import-Package: org.eclipse.jgit.lib;version="[0.8.0,0.9.0)",
org.eclipse.jgit.revplot;version="[0.8.0,0.9.0)",
org.eclipse.jgit.revwalk;version="[0.8.0,0.9.0)",
+ org.eclipse.jgit.transport;version="[0.8.0,0.9.0)",
org.eclipse.jgit.util;version="[0.8.0,0.9.0)"
+Require-Bundle: com.jcraft.jsch;bundle-version="[0.1.37,0.2.0)"

Back to the top