组织ID: |
com.spotify |
项目ID: |
ssh-agent-proxy |
版本: |
0.2.0 |
最后修改时间: |
2019-06-15 16:14:06 |
包类型: |
jar |
标题: |
ssh-agent-proxy |
描述: |
A Java library that talks to the local ssh-agent. |
相关URL: |
https://github.com/spotify/ssh-agent-proxy |
大小: |
21.66KB |
|
Maven引入代码: |
<dependency>
<groupId>com.spotify</groupId>
<artifactId>ssh-agent-proxy</artifactId>
<version>0.2.0</version>
</dependency>
|
Gradle引入代码: |
com.spotify:ssh-agent-proxy:0.2.0
|
下载Jar包: |
|
POM文件内容: |
<?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/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>com.spotify</groupId>
<artifactId>foss-root</artifactId>
<version>7</version>
</parent>
<artifactId>ssh-agent-proxy</artifactId>
<version>0.2.0</version>
<packaging>jar</packaging>
<name>ssh-agent-proxy</name>
<description>A Java library that talks to the local ssh-agent.</description>
<url>https://github.com/spotify/ssh-agent-proxy</url>
<licenses>
<license>
<name>The Apache Software License, Version 2.0</name>
<url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
<distribution>repo</distribution>
</license>
</licenses>
<scm>
<connection>scm:git:https://github.com/spotify/ssh-agent-proxy.git</connection>
<developerConnection>scm:git:git@github.com:spotify/ssh-agent-proxy.git</developerConnection>
<url>https://github.com/spotify/ssh-agent-proxy</url>
<tag>v0.2.0</tag>
</scm>
<distributionManagement>
<snapshotRepository>
<id>ossrh</id>
<url>https://oss.sonatype.org/content/repositories/snapshots</url>
</snapshotRepository>
</distributionManagement>
<developers>
<developer>
<id>dxia</id>
<name>David Xia</name>
<email>dxia@spotify.com</email>
</developer>
</developers>
<dependencies>
<dependency>
<groupId>com.github.jnr</groupId>
<artifactId>jnr-unixsocket</artifactId>
<version>0.18</version>
</dependency>
<dependency>
<groupId>commons-codec</groupId>
<artifactId>commons-codec</artifactId>
<version>1.10</version>
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-api</artifactId>
<version>1.7.7</version>
</dependency>
<dependency>
<groupId>com.google.guava</groupId>
<artifactId>guava</artifactId>
<version>17.0</version>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.12</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.mockito</groupId>
<artifactId>mockito-all</artifactId>
<version>1.10.19</version>
<scope>test</scope>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<artifactId>maven-checkstyle-plugin</artifactId>
<configuration>
<includeTestSourceDirectory>true</includeTestSourceDirectory>
<violationSeverity>warning</violationSeverity>
</configuration>
</plugin>
<plugin>
<artifactId>maven-enforcer-plugin</artifactId>
</plugin>
<plugin>
<artifactId>maven-failsafe-plugin</artifactId>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.3</version>
<configuration>
<source>1.7</source>
<target>1.7</target>
</configuration>
</plugin>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>cobertura-maven-plugin</artifactId>
<version>2.7</version>
<configuration>
<formats>
<format>html</format>
<format>xml</format>
</formats>
<check />
</configuration>
<executions>
<execution>
<phase>test</phase>
<goals>
<goal>cobertura</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
</project>
|
Jar包内容: |
META-INF/MANIFEST.MF
com.spotify.sshagentproxy.Rsa.class
com.spotify.sshagentproxy.IdentitiesAnswerHeaders.class
META-INF/maven/com.spotify/ssh-agent-proxy/pom.properties
com.spotify.sshagentproxy.AgentProxies$DefaultAgentProxy.class
com.spotify.sshagentproxy.TraditionalKeyParser.class
com.spotify.sshagentproxy.AgentProxies.class
com.spotify.sshagentproxy.SignResponseHeaders.class
com.spotify.sshagentproxy.DefaultIdentity.class
com.spotify.sshagentproxy.AgentProxy.class
com.spotify.sshagentproxy.AgentReplyHeaders.class
META-INF/maven/com.spotify/ssh-agent-proxy/pom.xml
com.spotify.sshagentproxy.AgentOutput.class
com.spotify.sshagentproxy.Identity.class
com.spotify.sshagentproxy.ByteIterator.class
com.spotify.sshagentproxy.AgentInput.class
|
依赖Jar: |
jnr-unixsocket-0.18.jar
/com.github.jnr/jnr-unixsocket/0.18
查看jnr-unixsocket所有版本文件
commons-codec-1.10.jar
/commons-codec/commons-codec/1.10
查看commons-codec所有版本文件
slf4j-api-1.7.7.jar
/org.slf4j/slf4j-api/1.7.7
查看slf4j-api所有版本文件
guava-17.0.jar
/com.google.guava/guava/17.0
查看guava所有版本文件
junit-4.12.jar
/junit/junit/4.12
查看junit所有版本文件
mockito-all-1.10.19.jar
/org.mockito/mockito-all/1.10.19
查看mockito-all所有版本文件
|