Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: dc2915a09f2459dbfc1c89ba02982c45a73fe714 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
/**
 * Provides a JGit {@link org.eclipse.jgit.transport.SshSessionFactory}
 * implemented via JSch.
 * <p>
 * This package should be considered <b>deprecated</b>. It is essentially
 * unmaintained and the JGit project may decide to remove it completely without
 * further ado at any time.
 * </p>
 * <p>
 * The officially supported Java SSH implementation for JGit is in bundle
 * {@code org.eclipse.jgit.ssh.apache} and is built upon
 * <a href="https://mina.apache.org/sshd-project/">Apache MINA sshd</a>.
 */
package org.eclipse.jgit.transport.ssh.jsch;

Back to the top