diff options
author | Thomas Wolf <thomas.wolf@paranor.ch> | 2018-10-18 23:34:04 +0200 |
---|---|---|
committer | Matthias Sohn <matthias.sohn@sap.com> | 2018-11-14 04:47:33 -0800 |
commit | a151190bef8769bb644f08e6fa423c7fe423a1dd (patch) | |
tree | d0fb8e0c4b502f4fdbfaa6fc3cc6be8dfed033d4 /org.eclipse.jgit.packaging/org.eclipse.jgit.pgm.feature | |
parent | c56fa51709278f2be4e155ae5fbad270188cbe64 (diff) | |
download | jgit-a151190bef8769bb644f08e6fa423c7fe423a1dd.tar.gz jgit-a151190bef8769bb644f08e6fa423c7fe423a1dd.zip |
Add --ssh option to command-line commands
Enables using the new ssh client based on Apache MINA sshd instead
of the old JSch client. The default is still JSch, so unless the
command is invoked with --ssh apache, there's no change.
I prefer this over some fiddling with the GIT_SSH environment variable
since that variable is handled in the JGit core bundle, which should
remain free of any dependency to org.eclipse.jgit.ssh.apache to avoid
problems in Gerrit or other JGit users that may use a different Apache
MINA sshd version.
Bug: 520927
Change-Id: I8460759c7113ef7887520fb0d297aa312200c69f
Signed-off-by: Thomas Wolf <thomas.wolf@paranor.ch>
Diffstat (limited to 'org.eclipse.jgit.packaging/org.eclipse.jgit.pgm.feature')
-rw-r--r-- | org.eclipse.jgit.packaging/org.eclipse.jgit.pgm.feature/feature.xml | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/org.eclipse.jgit.packaging/org.eclipse.jgit.pgm.feature/feature.xml b/org.eclipse.jgit.packaging/org.eclipse.jgit.pgm.feature/feature.xml index bbf0c6fd84..4d0bfe9ff0 100644 --- a/org.eclipse.jgit.packaging/org.eclipse.jgit.pgm.feature/feature.xml +++ b/org.eclipse.jgit.packaging/org.eclipse.jgit.pgm.feature/feature.xml @@ -33,6 +33,7 @@ <requires> <import feature="org.eclipse.jgit" version="5.2.0" match="equivalent"/> <import feature="org.eclipse.jgit.lfs" version="5.2.0" match="equivalent"/> + <import feature="org.eclipse.jgit.ssh.apache" version="5.2.0" match="equivalent"/> </requires> <plugin |