Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorShawn O. Pearce2010-11-10 22:41:10 +0000
committerShawn O. Pearce2010-11-10 23:12:47 +0000
commit17d9c686367888a7f001221ff6c31b802c267e4b (patch)
tree32d7d58d1743b313871359380597da05d5bff486 /org.eclipse.jgit.console/META-INF
parentd279bc83b0670b34f7c9237f803b6cc6e02fbc3e (diff)
downloadjgit-17d9c686367888a7f001221ff6c31b802c267e4b.tar.gz
jgit-17d9c686367888a7f001221ff6c31b802c267e4b.tar.xz
jgit-17d9c686367888a7f001221ff6c31b802c267e4b.zip
Implement command line support for CredentialsProvider
Instead of configuring the JSch session factory, configure a more generic CredentialsProvider, which will work for other transport types such as http, in addition to the existing ssh. Change-Id: I22b13303c17e654ba6720edf4be2ef15fe29537a Signed-off-by: Shawn O. Pearce <spearce@spearce.org>
Diffstat (limited to 'org.eclipse.jgit.console/META-INF')
-rw-r--r--org.eclipse.jgit.console/META-INF/MANIFEST.MF3
1 files changed, 2 insertions, 1 deletions
diff --git a/org.eclipse.jgit.console/META-INF/MANIFEST.MF b/org.eclipse.jgit.console/META-INF/MANIFEST.MF
index a29b348b0e..9607bdc160 100644
--- a/org.eclipse.jgit.console/META-INF/MANIFEST.MF
+++ b/org.eclipse.jgit.console/META-INF/MANIFEST.MF
@@ -7,7 +7,8 @@ Bundle-Version: 0.10.0.qualifier
Bundle-Vendor: %provider_name
Bundle-RequiredExecutionEnvironment: JavaSE-1.6
Export-Package: org.eclipse.jgit.console;version="0.10.0"
-Import-Package: org.eclipse.jgit.nls;version="[0.10.0,0.11.0)",
+Import-Package: org.eclipse.jgit.errors;version="[0.10.0,0.11.0)",
+ org.eclipse.jgit.nls;version="[0.10.0,0.11.0)",
org.eclipse.jgit.transport;version="[0.10.0,0.11.0)",
org.eclipse.jgit.util;version="[0.10.0,0.11.0)"
Require-Bundle: com.jcraft.jsch;bundle-version="[0.1.37,0.2.0)"

Back to the top