JSch.
JSch is a pure Java implementation of SSH2.
Here is the list of declaration for jsch. If you use Maven you can use the following code to add the dependency for this POM file.
<dependency> <groupId>com.jcraft</groupId> <artifactId>jsch</artifactId> <version>0.1.42</version> </dependency>
If you think this Maven repository POM file listing for jsch is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
Name:BSD
URL: http://www.jcraft.com/jsch/LICENSE.txt.
The jsch-0.1.42 has 1 dependencies.The most popular ones are listed in the following table along with their categories and number of artifacts depending on them.
Category | Artifact | Depended By Count |
---|---|---|
Zip | jzlib 1.0.7 JZlib is a re-implementation of zlib in pure Java | 26 |
The following table lists the most popular artifacts which are depending on jsch-0.1.42. Their categories and depend by count are also listed.
Category | Artifact | Depended By Count |
---|---|---|
Library | expectj 2.0.7 ExpectJ is a Java re-implementation of the venerable TCL Expect utility. It can be used to script interaction with either a process (through stdin / stdout) or a telnet session. | 81 |
The following packages are defined in the jsch-0.1.42.jar
com.jcraft.jsch com.jcraft.jsch.jce com.jcraft.jsch.jcraft com.jcraft.jsch.jgss
Here is the content of the POM file.
<?xml version="1.0" encoding="UTF-8"?> <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd"> <modelVersion>4.0.0</modelVersion> <groupId>com.jcraft</groupId> <artifactId>jsch</artifactId> <version>0.1.42</version> <name>JSch</name> <description>JSch is a pure Java implementation of SSH2</description> <url>http://www.jcraft.com/jsch/</url> <organization> <name>jcraft</name> <url>http://www.jcraft.com/jsch</url> </organization> <licenses> <license> <name>BSD</name> <url>http://www.jcraft.com/jsch/LICENSE.txt</url> </license> </licenses> <dependencies> <dependency> <groupId>com.jcraft</groupId> <artifactId>jzlib</artifactId> <version>1.0.7</version> <optional>true</optional> </dependency> </dependencies> </project>