diff options
author | Thomas Wolf <thomas.wolf@paranor.ch> | 2021-10-31 14:57:30 +0100 |
---|---|---|
committer | Thomas Wolf <thomas.wolf@paranor.ch> | 2021-10-31 15:05:04 +0100 |
commit | f6ef2f620110d1e62b69f3cfca017bac2784e6fb (patch) | |
tree | 6f372a7fbd106ff04e97b46ee50fcda6b93e6de2 /org.eclipse.jgit.ssh.jsch/src | |
parent | 83eddaf7fda22ca64e9c3852df67ccef0dacdaf5 (diff) | |
download | jgit-f6ef2f620110d1e62b69f3cfca017bac2784e6fb.tar.gz jgit-f6ef2f620110d1e62b69f3cfca017bac2784e6fb.zip |
[doc] Add README and package-info to the SSH bundles
Explain in the JSch bundle that it is essentially unmaintained. Add
descriptions in both bundles explaining how to use it, or how to use
an alternate implementation.
Change-Id: Idaf46c33b14543279f78a55cb7c6bd42b06ee6b8
Signed-off-by: Thomas Wolf <thomas.wolf@paranor.ch>
Diffstat (limited to 'org.eclipse.jgit.ssh.jsch/src')
-rw-r--r-- | org.eclipse.jgit.ssh.jsch/src/org/eclipse/jgit/transport/ssh/jsch/package-info.java | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/org.eclipse.jgit.ssh.jsch/src/org/eclipse/jgit/transport/ssh/jsch/package-info.java b/org.eclipse.jgit.ssh.jsch/src/org/eclipse/jgit/transport/ssh/jsch/package-info.java new file mode 100644 index 0000000000..dc2915a09f --- /dev/null +++ b/org.eclipse.jgit.ssh.jsch/src/org/eclipse/jgit/transport/ssh/jsch/package-info.java @@ -0,0 +1,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; |