| 组织ID: |
ch.ethz.ganymed |
| 项目ID: |
ganymed-ssh2 |
| 版本: |
261 |
| 最后修改时间: |
2018-07-25 18:02:28 |
| 包类型: |
jar |
| 标题: |
ganymed-ssh-2 |
| 描述: |
Ganymed SSH-2: Java based SSH-2 Protocol Implementation |
| 相关URL: |
https://code.google.com/p/ganymed-ssh-2/ |
| 大小: |
284.77KB |
|
|
| Maven引入代码: |
<dependency>
<groupId>ch.ethz.ganymed</groupId>
<artifactId>ganymed-ssh2</artifactId>
<version>261</version>
</dependency>
|
| Gradle引入代码: |
ch.ethz.ganymed:ganymed-ssh2:261
|
| 下载Jar包: |
|
| POM文件内容: |
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<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">
<parent>
<groupId>org.sonatype.oss</groupId>
<artifactId>oss-parent</artifactId>
<version>7</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>ch.ethz.ganymed</groupId>
<artifactId>ganymed-ssh2</artifactId>
<packaging>jar</packaging>
<version>261</version>
<name>ganymed-ssh-2</name>
<description>Ganymed SSH-2: Java based SSH-2 Protocol Implementation</description>
<url>https://code.google.com/p/ganymed-ssh-2/</url>
<prerequisites>
<maven>3.0</maven>
</prerequisites>
<licenses>
<license>
<name>BSD 3-Clause License</name>
<url>http://opensource.org/licenses/BSD-3-Clause</url>
</license>
</licenses>
<developers>
<developer>
<name>Christian Plattner</name>
<id>cleondris</id>
<email>info@cleondris.ch</email>
<organization>Cleondris GmbH</organization>
</developer>
<developer>
<name>David Kocher</name>
<id>iterate</id>
<email>post@iterate.ch</email>
<organization>iterate GmbH</organization>
</developer>
</developers>
<properties>
<maven.compile.source>1.5</maven.compile.source>
<maven.compile.target>1.5</maven.compile.target>
<source.encoding>UTF-8</source.encoding>
</properties>
<scm>
<url>http://ganymed-ssh-2.googlecode.com/svn/tags/ganymed-ssh2-261</url>
<connection>scm:svn:https://ganymed-ssh-2.googlecode.com/svn/tags/ganymed-ssh2-261</connection>
<developerConnection>scm:svn:https://ganymed-ssh-2.googlecode.com/svn/tags/ganymed-ssh2-261</developerConnection>
</scm>
<dependencyManagement>
<dependencies>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.11</version>
<scope>test</scope>
</dependency>
</dependencies>
</dependencyManagement>
<dependencies>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
</dependency>
</dependencies>
<build>
<resources>
<resource>
<directory>${basedir}</directory>
<includes>
<include>LICENSE.txt</include>
<include>HISTORY.txt</include>
<include>README.txt</include>
<include>FAQ.html</include>
</includes>
</resource>
</resources>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.1</version>
<configuration>
<source>${maven.compile.source}</source>
<target>${maven.compile.target}</target>
<encoding>${source.encoding}</encoding>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-resources-plugin</artifactId>
<version>2.6</version>
<configuration>
<encoding>UTF-8</encoding>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jar-plugin</artifactId>
<version>2.4</version>
<configuration>
<archive>
<manifest>
<addDefaultImplementationEntries>true</addDefaultImplementationEntries>
<addDefaultSpecificationEntries>true</addDefaultSpecificationEntries>
</manifest>
</archive>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
<version>2.2.1</version>
<executions>
<execution>
<id>attach-sources</id>
<goals>
<goal>jar</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<version>2.9</version>
<executions>
<execution>
<id>attach-javadocs</id>
<goals>
<goal>jar</goal>
</goals>
</execution>
</executions>
<configuration>
<links>
<link>http://download.oracle.com/javase/${maven.compile.target}/docs/api/</link>
</links>
<overview>${basedir}/overview.html</overview>
<encoding>${source.encoding}</encoding>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<version>2.12</version>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-site-plugin</artifactId>
<version>3.2</version>
</plugin>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>sonar-maven-plugin</artifactId>
<version>2.0</version>
</plugin>
</plugins>
</build>
<profiles>
<profile>
<id>release-sign-artifacts</id>
<activation>
<property>
<name>performRelease</name>
<value>true</value>
</property>
</activation>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-gpg-plugin</artifactId>
<version>1.4</version>
<executions>
<execution>
<id>sign-artifacts</id>
<phase>verify</phase>
<goals>
<goal>sign</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
</profile>
</profiles>
<reporting>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-project-info-reports-plugin</artifactId>
<version>2.6</version>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jxr-plugin</artifactId>
<version>2.3</version>
<configuration>
<inputEncoding>${source.encoding}</inputEncoding>
<outputEncoding>${source.encoding}</outputEncoding>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-report-plugin</artifactId>
<version>2.12.4</version>
</plugin>
</plugins>
</reporting>
</project>
|
| Jar包内容: |
META-INF/MANIFEST.MF
ch.ethz.ssh2.auth.AuthenticationManager.class
ch.ethz.ssh2.auth.ServerAuthenticationManager.class
ch.ethz.ssh2.AuthenticationResult.class
ch.ethz.ssh2.channel.Channel.class
ch.ethz.ssh2.channel.ChannelClosedException.class
ch.ethz.ssh2.channel.ChannelInputStream.class
ch.ethz.ssh2.channel.ChannelManager.class
ch.ethz.ssh2.channel.ChannelOutputStream.class
ch.ethz.ssh2.channel.IChannelWorkerThread.class
ch.ethz.ssh2.channel.LocalAcceptThread.class
ch.ethz.ssh2.channel.RemoteAcceptThread.class
ch.ethz.ssh2.channel.RemoteForwardingData.class
ch.ethz.ssh2.channel.RemoteX11AcceptThread.class
ch.ethz.ssh2.channel.ServerSessionImpl.class
ch.ethz.ssh2.channel.StreamForwarder.class
ch.ethz.ssh2.channel.X11ServerData.class
ch.ethz.ssh2.ChannelCondition.class
ch.ethz.ssh2.Connection$1.class
ch.ethz.ssh2.Connection$1TimeoutState.class
ch.ethz.ssh2.Connection.class
ch.ethz.ssh2.ConnectionInfo.class
ch.ethz.ssh2.ConnectionMonitor.class
ch.ethz.ssh2.crypto.Base64.class
ch.ethz.ssh2.crypto.cipher.AES.class
ch.ethz.ssh2.crypto.cipher.BlockCipher.class
ch.ethz.ssh2.crypto.cipher.BlockCipherFactory$CipherEntry.class
ch.ethz.ssh2.crypto.cipher.BlockCipherFactory.class
ch.ethz.ssh2.crypto.cipher.BlowFish.class
ch.ethz.ssh2.crypto.cipher.CBCMode.class
ch.ethz.ssh2.crypto.cipher.CipherInputStream.class
ch.ethz.ssh2.crypto.cipher.CipherOutputStream.class
ch.ethz.ssh2.crypto.cipher.CTRMode.class
ch.ethz.ssh2.crypto.cipher.DES.class
ch.ethz.ssh2.crypto.cipher.DESede.class
ch.ethz.ssh2.crypto.cipher.NullCipher.class
ch.ethz.ssh2.crypto.CryptoWishList.class
ch.ethz.ssh2.crypto.dh.DhExchange.class
ch.ethz.ssh2.crypto.dh.DhGroupExchange.class
ch.ethz.ssh2.crypto.digest.Digest.class
ch.ethz.ssh2.crypto.digest.HashForSSH2Types.class
ch.ethz.ssh2.crypto.digest.HMAC.class
ch.ethz.ssh2.crypto.digest.MAC.class
ch.ethz.ssh2.crypto.digest.MD5.class
ch.ethz.ssh2.crypto.digest.SHA1.class
ch.ethz.ssh2.crypto.KeyMaterial.class
ch.ethz.ssh2.crypto.PEMDecoder.class
ch.ethz.ssh2.crypto.PEMDecryptException.class
ch.ethz.ssh2.crypto.PEMStructure.class
ch.ethz.ssh2.crypto.SimpleDERReader.class
ch.ethz.ssh2.DHGexParameters.class
ch.ethz.ssh2.HTTPProxyData.class
ch.ethz.ssh2.HTTPProxyException.class
ch.ethz.ssh2.InteractiveCallback.class
ch.ethz.ssh2.KnownHosts$KnownHostsEntry.class
ch.ethz.ssh2.KnownHosts.class
ch.ethz.ssh2.LocalPortForwarder.class
ch.ethz.ssh2.LocalStreamForwarder.class
ch.ethz.ssh2.log.Logger.class
ch.ethz.ssh2.PacketListener.class
ch.ethz.ssh2.packets.PacketChannelFailure.class
ch.ethz.ssh2.packets.PacketChannelOpenConfirmation.class
ch.ethz.ssh2.packets.PacketChannelOpenFailure.class
ch.ethz.ssh2.packets.PacketChannelSuccess.class
ch.ethz.ssh2.packets.PacketChannelWindowAdjust.class
ch.ethz.ssh2.packets.PacketDisconnect.class
ch.ethz.ssh2.packets.PacketGlobalCancelForwardRequest.class
ch.ethz.ssh2.packets.PacketGlobalForwardRequest.class
ch.ethz.ssh2.packets.PacketIgnore.class
ch.ethz.ssh2.packets.PacketKexDhGexGroup.class
ch.ethz.ssh2.packets.PacketKexDhGexInit.class
ch.ethz.ssh2.packets.PacketKexDhGexReply.class
ch.ethz.ssh2.packets.PacketKexDhGexRequest.class
ch.ethz.ssh2.packets.PacketKexDhGexRequestOld.class
ch.ethz.ssh2.packets.PacketKexDHInit.class
ch.ethz.ssh2.packets.PacketKexDHReply.class
ch.ethz.ssh2.packets.PacketKexInit.class
ch.ethz.ssh2.packets.PacketNewKeys.class
ch.ethz.ssh2.packets.PacketOpenDirectTCPIPChannel.class
ch.ethz.ssh2.packets.PacketOpenSessionChannel.class
ch.ethz.ssh2.packets.Packets.class
ch.ethz.ssh2.packets.PacketServiceAccept.class
ch.ethz.ssh2.packets.PacketServiceRequest.class
ch.ethz.ssh2.packets.PacketSessionExecCommand.class
ch.ethz.ssh2.packets.PacketSessionPtyRequest.class
ch.ethz.ssh2.packets.PacketSessionStartShell.class
ch.ethz.ssh2.packets.PacketSessionSubsystemRequest.class
ch.ethz.ssh2.packets.PacketSessionX11Request.class
ch.ethz.ssh2.packets.PacketUserauthBanner.class
ch.ethz.ssh2.packets.PacketUserauthFailure.class
ch.ethz.ssh2.packets.PacketUserauthInfoRequest.class
ch.ethz.ssh2.packets.PacketUserauthInfoResponse.class
ch.ethz.ssh2.packets.PacketUserauthRequestInteractive.class
ch.ethz.ssh2.packets.PacketUserauthRequestNone.class
ch.ethz.ssh2.packets.PacketUserauthRequestPassword.class
ch.ethz.ssh2.packets.PacketUserauthRequestPublicKey.class
ch.ethz.ssh2.packets.PacketUserauthSuccess.class
ch.ethz.ssh2.packets.TypesReader.class
ch.ethz.ssh2.packets.TypesWriter.class
ch.ethz.ssh2.ProxyData.class
ch.ethz.ssh2.PtySettings.class
ch.ethz.ssh2.SCPClient$LenNamePair.class
ch.ethz.ssh2.SCPClient.class
ch.ethz.ssh2.SCPInputStream.class
ch.ethz.ssh2.SCPOutputStream.class
ch.ethz.ssh2.server.ServerConnectionState.class
ch.ethz.ssh2.ServerAuthenticationCallback.class
ch.ethz.ssh2.ServerConnection.class
ch.ethz.ssh2.ServerConnectionCallback.class
ch.ethz.ssh2.ServerHostKeyVerifier.class
ch.ethz.ssh2.ServerSession.class
ch.ethz.ssh2.ServerSessionCallback.class
ch.ethz.ssh2.Session.class
ch.ethz.ssh2.sftp.AttribBits.class
ch.ethz.ssh2.sftp.AttribFlags.class
ch.ethz.ssh2.sftp.AttribPermissions.class
ch.ethz.ssh2.sftp.AttribTypes.class
ch.ethz.ssh2.sftp.AttrTextHints.class
ch.ethz.ssh2.sftp.ErrorCodes.class
ch.ethz.ssh2.sftp.OpenFlags.class
ch.ethz.ssh2.sftp.Packet.class
ch.ethz.ssh2.SFTPException.class
ch.ethz.ssh2.SFTPInputStream.class
ch.ethz.ssh2.SFTPOutputStream.class
ch.ethz.ssh2.SFTPv3Client$1.class
ch.ethz.ssh2.SFTPv3Client$OutstandingReadRequest.class
ch.ethz.ssh2.SFTPv3Client$OutstandingStatusRequest.class
ch.ethz.ssh2.SFTPv3Client.class
ch.ethz.ssh2.SFTPv3DirectoryEntry.class
ch.ethz.ssh2.SFTPv3FileAttributes.class
ch.ethz.ssh2.SFTPv3FileHandle.class
ch.ethz.ssh2.signature.DSAPrivateKey.class
ch.ethz.ssh2.signature.DSAPublicKey.class
ch.ethz.ssh2.signature.DSASHA1Verify.class
ch.ethz.ssh2.signature.DSASignature.class
ch.ethz.ssh2.signature.RSAPrivateKey.class
ch.ethz.ssh2.signature.RSAPublicKey.class
#内容未全部加载,请点击展开加载全部代码(NowJava.com)
|
| 依赖Jar: |
junit-4.11.jar
/junit/junit/4.11
查看junit所有版本文件
|