组织ID: |
com.spotify |
项目ID: |
ssh-agent-proxy |
版本: |
0.1.4 |
最后修改时间: |
2019-10-29 00:47:33 |
包类型: |
jar |
标题: |
ssh-agent-proxy |
描述: |
A Java library that talks to the local ssh-agent. |
相关URL: |
https://github.com/spotify/ssh-agent-proxy |
大小: |
21.50KB |
|
Maven引入代码: |
<dependency>
<groupId>com.spotify</groupId>
<artifactId>ssh-agent-proxy</artifactId>
<version>0.1.4</version>
</dependency>
|
Gradle引入代码: |
com.spotify:ssh-agent-proxy:0.1.4
|
下载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>
<groupId>com.spotify</groupId>
<artifactId>ssh-agent-proxy</artifactId>
<version>0.1.4</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>0.1.4</tag>
</scm>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
<autoReleaseAfterClose>true</autoReleaseAfterClose>
</properties>
<distributionManagement>
<snapshotRepository>
<id>ossrh</id>
<url>https://oss.sonatype.org/content/repositories/snapshots</url>
</snapshotRepository>
</distributionManagement>
<developers>
<developer>
<id>davidxia</id>
<name>David Xia</name>
<email>david@davidxia.com</email>
</developer>
</developers>
<dependencies>
<dependency>
<groupId>com.github.jnr</groupId>
<artifactId>jnr-unixsocket</artifactId>
<version>0.8</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>
<profiles>
<profile>
<id>sign-artifacts</id>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-gpg-plugin</artifactId>
<version>1.6</version>
<executions>
<execution>
<id>sign-artifacts</id>
<phase>verify</phase>
<goals>
<goal>sign</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
</profile>
</profiles>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
<version>2.4</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.10.3</version>
<executions>
<execution>
<id>attach-javadocs</id>
<goals>
<goal>jar</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-release-plugin</artifactId>
<version>2.5.2</version>
<configuration>
<tagNameFormat>@{project.version}</tagNameFormat>
</configuration>
<dependencies>
<dependency>
<groupId>org.apache.maven.scm</groupId>
<artifactId>maven-scm-provider-gitexe</artifactId>
<version>1.9.4</version>
</dependency>
</dependencies>
</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.apache.maven.plugins</groupId>
<artifactId>maven-project-info-reports-plugin</artifactId>
<version>2.8.1</version>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-checkstyle-plugin</artifactId>
<version>2.16</version>
<executions>
<execution>
<id>validate</id>
<phase>validate</phase>
<configuration>
<configLocation>checkstyle.xml</configLocation>
<encoding>UTF-8</encoding>
<consoleOutput>true</consoleOutput>
<failsOnError>true</failsOnError>
</configuration>
<goals>
<goal>check</goal>
</goals>
</execution>
</executions>
<dependencies>
<dependency>
<groupId>com.puppycrawl.tools</groupId>
<artifactId>checkstyle</artifactId>
<version>6.1.1</version>
</dependency>
</dependencies>
</plugin>
<plugin>
<groupId>org.sonatype.plugins</groupId>
<artifactId>nexus-staging-maven-plugin</artifactId>
<version>1.6.5</version>
<extensions>true</extensions>
<configuration>
<serverId>ossrh</serverId>
<nexusUrl>https://oss.sonatype.org/</nexusUrl>
<autoReleaseAfterClose>${autoReleaseAfterClose}</autoReleaseAfterClose>
<stagingProgressTimeoutMinutes>10</stagingProgressTimeoutMinutes>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-enforcer-plugin</artifactId>
<version>1.4.1</version>
<executions>
<execution>
<id>enforce</id>
<configuration>
<rules>
<requireUpperBoundDeps />
</rules>
</configuration>
<goals>
<goal>enforce</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
</project>
|
Jar包内容: |
META-INF/MANIFEST.MF
com.spotify.sshagentproxy.AgentInput.class
com.spotify.sshagentproxy.AgentOutput.class
com.spotify.sshagentproxy.AgentProxies$DefaultAgentProxy.class
com.spotify.sshagentproxy.AgentProxies.class
com.spotify.sshagentproxy.AgentProxy.class
com.spotify.sshagentproxy.AgentReplyHeaders.class
com.spotify.sshagentproxy.ByteIterator.class
com.spotify.sshagentproxy.DefaultIdentity.class
com.spotify.sshagentproxy.IdentitiesAnswerHeaders.class
com.spotify.sshagentproxy.Identity.class
com.spotify.sshagentproxy.RSA.class
com.spotify.sshagentproxy.SignResponseHeaders.class
com.spotify.sshagentproxy.TraditionalKeyParser.class
META-INF/maven/com.spotify/ssh-agent-proxy/pom.xml
META-INF/maven/com.spotify/ssh-agent-proxy/pom.properties
|
依赖Jar: |
jnr-unixsocket-0.8.jar
/com.github.jnr/jnr-unixsocket/0.8
查看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所有版本文件
|