Skip to main content
summaryrefslogtreecommitdiffstats
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.junit
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.junit')
-rw-r--r--org.eclipse.jgit.junit/META-INF/MANIFEST.MF4
1 files changed, 2 insertions, 2 deletions
diff --git a/org.eclipse.jgit.junit/META-INF/MANIFEST.MF b/org.eclipse.jgit.junit/META-INF/MANIFEST.MF
index b49e3684dc..3324c7601a 100644
--- a/org.eclipse.jgit.junit/META-INF/MANIFEST.MF
+++ b/org.eclipse.jgit.junit/META-INF/MANIFEST.MF
@@ -7,8 +7,7 @@ Bundle-Localization: plugin
Bundle-Vendor: %provider_name
Bundle-ActivationPolicy: lazy
Bundle-RequiredExecutionEnvironment: J2SE-1.5
-Import-Package: com.jcraft.jsch;version="[0.1.41,0.2.0)",
- junit.framework;version="[3.8.2,4.0.0)",
+Import-Package: junit.framework;version="[3.8.2,4.0.0)",
org.eclipse.jgit.diff;version="[0.8.0,0.9.0)",
org.eclipse.jgit.dircache;version="[0.8.0,0.9.0)",
org.eclipse.jgit.errors;version="[0.8.0,0.9.0)",
@@ -25,3 +24,4 @@ Import-Package: com.jcraft.jsch;version="[0.1.41,0.2.0)",
org.eclipse.jgit.util;version="[0.8.0,0.9.0)",
org.eclipse.jgit.util.io;version="[0.8.0,0.9.0)"
Export-Package: org.eclipse.jgit.junit;version="0.8.0"
+Require-Bundle: com.jcraft.jsch;bundle-version="[0.1.37,0.2.0)"

Back to the top