Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorShawn O. Pearce2009-10-02 16:31:32 +0000
committerShawn O. Pearce2009-10-02 16:31:32 +0000
commit98468577a703b62d00d55d9e9e1c1016290909c5 (patch)
tree70b2e867f217a9ad8d4b13153113d38178758b85 /org.eclipse.egit.ui/META-INF
parentaefd631e3c23edbfca7221a63fa600fb468fe389 (diff)
downloadegit-98468577a703b62d00d55d9e9e1c1016290909c5.tar.gz
egit-98468577a703b62d00d55d9e9e1c1016290909c5.tar.xz
egit-98468577a703b62d00d55d9e9e1c1016290909c5.zip
Fix org.eclipse.egit.ui dependency on JSch
Since org.eclipse.jgit no longer exports org.jcraft.jsch we need to import it ourselves in order to access the API for the GUI login panels. Change-Id: I196e694bdae4d280d9f7b5bf7b7c610f83e76a20 Signed-off-by: Shawn O. Pearce <spearce@spearce.org>
Diffstat (limited to 'org.eclipse.egit.ui/META-INF')
-rw-r--r--org.eclipse.egit.ui/META-INF/MANIFEST.MF3
1 files changed, 2 insertions, 1 deletions
diff --git a/org.eclipse.egit.ui/META-INF/MANIFEST.MF b/org.eclipse.egit.ui/META-INF/MANIFEST.MF
index 3af14b57de..6be1709cac 100644
--- a/org.eclipse.egit.ui/META-INF/MANIFEST.MF
+++ b/org.eclipse.egit.ui/META-INF/MANIFEST.MF
@@ -23,5 +23,6 @@ Require-Bundle: org.eclipse.core.runtime,
org.eclipse.jsch.ui;bundle-version="1.1.100"
Bundle-ActivationPolicy: lazy
Bundle-RequiredExecutionEnvironment: J2SE-1.5
-Import-Package: org.eclipse.jsch.core,
+Import-Package: com.jcraft.jsch,
+ org.eclipse.jsch.core,
org.eclipse.jsch.internal.core

Back to the top