组织ID: |
com.github.docker-java |
项目ID: |
docker-java |
版本: |
3.0.9 |
最后修改时间: |
2018-07-28 17:04:43 |
包类型: |
jar |
标题: |
docker-java |
描述: |
Java API Client for Docker |
相关URL: |
https://github.com/docker-java/docker-java |
大小: |
619.15KB |
|
Maven引入代码: |
<dependency>
<groupId>com.github.docker-java</groupId>
<artifactId>docker-java</artifactId>
<version>3.0.9</version>
</dependency>
|
Gradle引入代码: |
com.github.docker-java:docker-java:3.0.9
|
下载Jar包: |
|
POM文件内容: |
<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>org.sonatype.oss</groupId>
<artifactId>oss-parent</artifactId>
<version>9</version>
</parent>
<groupId>com.github.docker-java</groupId>
<artifactId>docker-java</artifactId>
<packaging>jar</packaging>
<version>3.0.9</version>
<name>docker-java</name>
<url>https://github.com/docker-java/docker-java</url>
<description>Java API Client for Docker</description>
<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:git@github.com:docker-java/docker-java.git</connection>
<url>git@github.com:docker-java/docker-java.git</url>
<developerConnection>scm:git:git@github.com:docker-java/docker-java.git</developerConnection>
<tag>3.0.9</tag>
</scm>
<developers>
<developer>
<id>marcuslinke</id>
<name>Marcus Linke</name>
<email>marcus.linke@gmx.de</email>
</developer>
<developer>
<id>kostyasha</id>
<name>Kanstantsin Shautsou</name>
<email>kanstantsin.sha@gmail.com</email>
</developer>
<developer>
<id>kpelykh</id>
<name>Konstantin Pelykh</name>
<email>kpelykh@gmail.com</email>
</developer>
</developers>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
<jdk.debug>true</jdk.debug>
<jdk.optimize>false</jdk.optimize>
<jdk.source>1.7</jdk.source>
<jdk.target>1.7</jdk.target>
<jersey.version>2.23.1</jersey.version>
<jackson-jaxrs.version>2.6.4</jackson-jaxrs.version>
<httpclient.version>4.5</httpclient.version><!-- 4.5.1-4.5.2 broken -->
<commons-compress.version>1.12</commons-compress.version>
<commons-codec.version>1.10</commons-codec.version>
<commons-io.version>2.5</commons-io.version>
<commons-lang.version>2.6</commons-lang.version>
<slf4j-api.version>1.7.21</slf4j-api.version>
<bouncycastle.version>1.54</bouncycastle.version>
<junixsocket.version>2.0.4</junixsocket.version>
<guava.version>19.0</guava.version>
<!-- test dependencies -->
<logback.version>1.1.7</logback.version>
<testng.version>6.9.10</testng.version>
<netty.version>4.1.3.Final</netty.version>
<hamcrest.library.version>1.3</hamcrest.library.version>
<hamcrest.jpa-matchers>1.8</hamcrest.jpa-matchers>
<lambdaj.version>2.3.3</lambdaj.version>
<mockito.version>1.10.19</mockito.version>
<maven-jar-plugin.version>3.0.2</maven-jar-plugin.version>
<maven-compiler-plugin.version>3.5.1</maven-compiler-plugin.version>
<maven-release-plugin.version>2.5.3</maven-release-plugin.version>
<maven-surefire-plugin.version>2.19.1</maven-surefire-plugin.version>
<maven-failsafe-plugin.version>2.19.1</maven-failsafe-plugin.version>
<maven-antrun-plugin.version>1.8</maven-antrun-plugin.version>
<maven-bundlor-plugin.version>1.1.2.RELEASE</maven-bundlor-plugin.version>
<maven-build-helper-plugin.version>3.0.0</maven-build-helper-plugin.version>
</properties>
<dependencies>
<dependency>
<groupId>com.fasterxml.jackson.jaxrs</groupId>
<artifactId>jackson-jaxrs-json-provider</artifactId>
<version>${jackson-jaxrs.version}</version>
</dependency>
<dependency>
<groupId>org.glassfish.jersey.connectors</groupId>
<artifactId>jersey-apache-connector</artifactId>
<version>${jersey.version}</version>
</dependency>
<dependency>
<groupId>org.apache.httpcomponents</groupId>
<artifactId>httpcore</artifactId>
<version>4.4.5</version>
</dependency>
<dependency>
<groupId>org.apache.httpcomponents</groupId>
<artifactId>httpclient</artifactId>
<version>${httpclient.version}</version>
<exclusions>
<exclusion>
<groupId>commons-logging</groupId>
<artifactId>commons-logging</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>org.glassfish.jersey.core</groupId>
<artifactId>jersey-client</artifactId>
<version>${jersey.version}</version>
</dependency>
<dependency>
<groupId>com.kohlschutter.junixsocket</groupId>
<artifactId>junixsocket-common</artifactId>
<version>${junixsocket.version}</version>
</dependency>
<dependency>
<groupId>com.kohlschutter.junixsocket</groupId>
<artifactId>junixsocket-native-common</artifactId>
<version>${junixsocket.version}</version>
</dependency>
<dependency>
<groupId>org.apache.commons</groupId>
<artifactId>commons-compress</artifactId>
<version>${commons-compress.version}</version>
</dependency>
<dependency>
<groupId>commons-codec</groupId>
<artifactId>commons-codec</artifactId>
<version>${commons-codec.version}</version>
</dependency>
<dependency>
<groupId>commons-lang</groupId>
<artifactId>commons-lang</artifactId>
<version>${commons-lang.version}</version>
</dependency>
<dependency>
<groupId>commons-io</groupId>
<artifactId>commons-io</artifactId>
<version>${commons-io.version}</version>
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-api</artifactId>
<version>${slf4j-api.version}</version>
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>jcl-over-slf4j</artifactId>
<version>1.7.21</version>
</dependency>
<dependency>
<groupId>com.google.guava</groupId>
<artifactId>guava</artifactId>
<version>${guava.version}</version>
</dependency>
<dependency>
<groupId>org.bouncycastle</groupId>
<artifactId>bcpkix-jdk15on</artifactId>
<version>${bouncycastle.version}</version>
</dependency>
<!-- /// Test /////////////////////////// -->
<dependency>
<groupId>ch.qos.logback</groupId>
<artifactId>logback-core</artifactId>
<version>${logback.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>ch.qos.logback</groupId>
<artifactId>logback-classic</artifactId>
<version>${logback.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.testng</groupId>
<artifactId>testng</artifactId>
<version>${testng.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.hamcrest</groupId>
<artifactId>hamcrest-library</artifactId>
<version>${hamcrest.library.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>com.googlecode.lambdaj</groupId>
<artifactId>lambdaj</artifactId>
<version>${lambdaj.version}</version>
<scope>test</scope>
<exclusions>
<exclusion>
<groupId>org.hamcrest</groupId>
<artifactId>hamcrest-all</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>org.testinfected.hamcrest-matchers</groupId>
<artifactId>jpa-matchers</artifactId>
<version>${hamcrest.jpa-matchers}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.mockito</groupId>
<artifactId>mockito-core</artifactId>
<version>${mockito.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>com.google.code.findbugs</groupId>
<artifactId>annotations</artifactId>
<version>3.0.1</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>io.netty</groupId>
<artifactId>netty-codec-http</artifactId>
<version>${netty.version}</version>
</dependency>
<dependency>
<groupId>io.netty</groupId>
<artifactId>netty-handler</artifactId>
<version>${netty.version}</version>
</dependency>
<dependency>
<groupId>io.netty</groupId>
<artifactId>netty-handler-proxy</artifactId>
<version>${netty.version}</version>
</dependency>
<dependency>
<groupId>io.netty</groupId>
<artifactId>netty-transport-native-epoll</artifactId>
<version>${netty.version}</version>
<classifier>linux-x86_64</classifier>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.12</version>
<scope>test</scope>
</dependency>
</dependencies>
<distributionManagement>
<snapshotRepository>
<id>ossrh</id>
<url>https://oss.sonatype.org/content/repositories/snapshots</url>
</snapshotRepository>
<repository>
<id>ossrh</id>
<url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url>
</repository>
</distributionManagement>
<pluginRepositories>
<pluginRepository>
<id>eclipse.virgo.build.bundles.release</id>
<name>Eclipse Virgo Build</name>
<url>http://build.eclipse.org/rt/virgo/maven/bundles/release</url>
</pluginRepository>
<pluginRepository>
<id>com.springsource.repository.bundles.external</id>
<name>SpringSource Enterprise Bundle Repository - External Bundle Releases</name>
<url>http://repository.springsource.com/maven/bundles/external</url>
</pluginRepository>
</pluginRepositories>
<build>
<pluginManagement>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-release-plugin</artifactId>
<version>${maven-release-plugin.version}</version>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>${maven-compiler-plugin.version}</version>
<configuration>
<source>${jdk.source}</source>
<target>${jdk.target}</target>
<debug>${jdk.debug}</debug>
<optimize>${jdk.optimize}</optimize>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jar-plugin</artifactId>
<version>${maven-jar-plugin.version}</version>
<configuration>
<archive>
<manifestFile>target/classes/META-INF/MANIFEST.MF</manifestFile>
</archive>
</configuration>
<executions>
<execution>
<goals>
<goal>test-jar</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-antrun-plugin</artifactId>
<version>${maven-antrun-plugin.version}</version>
<executions>
<execution>
<phase>validate</phase>
<goals>
<goal>run</goal>
</goals>
<configuration>
<tasks>
<echo>*******************************************************************</echo>
<echo>*******************************************************************</echo>
<echo>[project.name] : ${project.name}</echo>
<echo>[project.basedir] : ${project.basedir}</echo>
<echo>[project.version] : ${project.version}</echo>
<echo>[project.artifactId] ${project.artifactId}</echo>
<echo>[project.build.directory] ${project.build.directory}</echo>
<echo>[jdk.source] : ${jdk.source}</echo>
<echo>[jdk.target] : ${jdk.target}</echo>
<echo>[jdk.debug] : ${jdk.debug}</echo>
<echo>[jdk.optimize] : ${jdk.optimize}</echo>
<echo>[source encoding]: ${project.build.sourceEncoding}</echo>
<echo>[LocalRepository] : ${settings.localRepository}</echo>
<echo>*******************************************************************</echo>
<echo>*******************************************************************</echo>
</tasks>
</configuration>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
<version>3.0.1</version>
<executions>
<execution>
<id>attach-sources</id>
<goals>
<goal>jar-no-fork</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<version>2.10.4</version>
<executions>
<execution>
<id>attach-javadocs</id>
<goals>
<goal>jar</goal>
</goals>
<configuration>
<additionalparam>-Xdoclint:none</additionalparam>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</pluginManagement>
<plugins>
<plugin>
<groupId>org.sonatype.plugins</groupId>
<artifactId>nexus-staging-maven-plugin</artifactId>
<version>1.6.7</version>
<extensions>true</extensions>
<configuration>
<serverId>ossrh</serverId>
<nexusUrl>https://oss.sonatype.org/</nexusUrl>
<autoReleaseAfterClose>true</autoReleaseAfterClose>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-release-plugin</artifactId>
<version>${maven-release-plugin.version}</version>
<configuration>
<autoVersionSubmodules>true</autoVersionSubmodules>
<useReleaseProfile>false</useReleaseProfile>
<releaseProfiles>release</releaseProfiles>
<goals>deploy nexus-staging:release</goals>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<version>${maven-surefire-plugin.version}</version>
<configuration>
<rerunFailingTestsCount>3</rerunFailingTestsCount>
<excludedGroups>integration,integration-auth</excludedGroups>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-failsafe-plugin</artifactId>
<version>${maven-failsafe-plugin.version}</version>
<executions>
<execution>
<goals>
<goal>integration-test</goal>
<goal>verify</goal>
</goals>
<configuration>
<rerunFailingTestsCount>3</rerunFailingTestsCount>
<useUnlimitedThreads>true</useUnlimitedThreads>
<perCoreThreadCount>true</perCoreThreadCount>
<threadCount>1</threadCount>
<groups>integration</groups>
<excludedGroups>integration-auth</excludedGroups>
<includes>
<include>**/*Test.java</include>
</includes>
</configuration>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
</plugin>
<plugin>
<groupId>org.eclipse.virgo.bundlor</groupId>
<artifactId>org.eclipse.virgo.bundlor.maven</artifactId>
<version>${maven-bundlor-plugin.version}</version>
<executions>
<execution>
<id>bundlor</id>
<goals>
<goal>bundlor</goal>
</goals>
<configuration>
<failOnWarnings>true</failOnWarnings>
</configuration>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>build-helper-maven-plugin</artifactId>
<version>${maven-build-helper-plugin.version}</version>
<executions>
<execution>
<id>parse-version</id>
<goals>
<goal>parse-version</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
<profiles>
<profile>
<id>release</id>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-gpg-plugin</artifactId>
<executions>
<execution>
<id>sign-artifacts</id>
<phase>verify</phase>
<goals>
<goal>sign</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
</plugin>
</plugins>
</build>
</profile>
<profile>
<id>docker-java-analyses</id>
<activation>
<activeByDefault>true</activeByDefault>
</activation>
<build>
<plugins>
<plugin>
<artifactId>maven-checkstyle-plugin</artifactId>
<version>2.17</version>
<executions>
<execution>
<id>checkstyle</id>
<phase>validate</phase>
<goals>
<goal>check</goal>
</goals>
</execution>
</executions>
<configuration>
<encoding>UTF-8</encoding>
<failOnViolation>true</failOnViolation>
<logViolationsToConsole>true</logViolationsToConsole>
<linkXRef>false</linkXRef>
<!-- if some IDE has integration and requires other place, propose
it -->
<configLocation>
src/test/resources/checkstyle/checkstyle-config.xml
</configLocation>
</configuration>
</plugin>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>findbugs-maven-plugin</artifactId>
<version>3.0.3</version>
<configuration>
<effort>Max</effort>
<threshold>Low</threshold>
<xmlOutput>true</xmlOutput>
<!-- until all will be fixed -->
<failOnError>false</failOnError>
</configuration>
<executions>
<execution>
<goals>
<goal>check</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.jacoco</groupId>
<artifactId>jacoco-maven-plugin</artifactId>
<version>0.7.7.201606060606</version>
<executions>
<execution>
<goals>
<goal>prepare-agent</goal>
</goals>
</execution>
<execution>
<id>post-unit-test</id>
<phase>test</phase>
<goals>
<goal>report</goal>
</goals>
</execution>
<execution>
<id>pre-integration-test</id>
<phase>pre-integration-test</phase>
<goals>
<goal>prepare-agent-integration</goal>
</goals>
</execution>
<execution>
<id>report-integration</id>
<goals>
<goal>report-integration</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
</profile>
</profiles>
</project>
|
Jar包内容: |
META-INF/MANIFEST.MF
com.github.dockerjava.api.async.ResultCallback.class
com.github.dockerjava.api.command.CommitCmd$Exec.class
com.github.dockerjava.api.command.CommitCmd.class
com.github.dockerjava.api.command.CreateVolumeCmd.class
com.github.dockerjava.api.command.EventsCmd$Exec.class
com.github.dockerjava.api.command.InspectExecResponse$ProcessConfig.class
com.github.dockerjava.api.command.InspectVolumeCmd.class
com.github.dockerjava.api.command.LoadImageCmd$Exec.class
com.github.dockerjava.api.command.RestartContainerCmd$Exec.class
com.github.dockerjava.api.command.RestartContainerCmd.class
com.github.dockerjava.api.command.StatsCmd.class
com.github.dockerjava.api.command.TopContainerResponse.class
com.github.dockerjava.api.command.WaitContainerCmd.class
com.github.dockerjava.api.exception.NotFoundException.class
com.github.dockerjava.api.model.Binds$Deserializer.class
com.github.dockerjava.api.model.ContainerConfig.class
com.github.dockerjava.api.model.ContainerNetwork.class
com.github.dockerjava.api.model.EventActor.class
com.github.dockerjava.api.model.ExposedPorts.class
com.github.dockerjava.api.model.InfoRegistryConfig.class
com.github.dockerjava.api.model.LogConfig$LoggingType$Serializer.class
com.github.dockerjava.api.model.NetworkSettings.class
com.github.dockerjava.api.model.PullResponseItem.class
com.github.dockerjava.api.model.SearchItem.class
com.github.dockerjava.api.model.Volume.class
com.github.dockerjava.api.model.Volumes$Deserializer.class
com.github.dockerjava.api.model.VolumesRW.class
com.github.dockerjava.core.AuthConfigFile.class
com.github.dockerjava.core.command.ConnectToNetworkCmdImpl.class
com.github.dockerjava.core.command.CreateImageCmdImpl.class
com.github.dockerjava.core.command.ExecStartCmdImpl.class
com.github.dockerjava.core.command.InspectImageCmdImpl.class
com.github.dockerjava.core.command.LogContainerCmdImpl.class
com.github.dockerjava.core.command.RemoveContainerCmdImpl.class
com.github.dockerjava.core.command.StartContainerCmdImpl.class
com.github.dockerjava.core.command.WaitContainerCmdImpl.class
com.github.dockerjava.core.dockerfile.Dockerfile$1.class
com.github.dockerjava.core.dockerfile.DockerfileStatement$Add$1.class
com.github.dockerjava.core.dockerfile.DockerfileStatement$Add$2.class
com.github.dockerjava.core.GoLangFileMatch.class
com.github.dockerjava.core.RemoteApiVersion.class
com.github.dockerjava.jaxrs.AbstrAsyncDockerCmdExec.class
com.github.dockerjava.jaxrs.AbstrSyncDockerCmdExec.class
com.github.dockerjava.jaxrs.ApacheUnixSocket$7.class
com.github.dockerjava.jaxrs.AuthCmdExec.class
com.github.dockerjava.jaxrs.CopyFileFromContainerCmdExec.class
com.github.dockerjava.jaxrs.ExecCreateCmdExec.class
com.github.dockerjava.jaxrs.filter.SelectiveLoggingFilter.class
com.github.dockerjava.jaxrs.JerseyDockerCmdExecFactory$1.class
com.github.dockerjava.jaxrs.ListNetworksCmdExec.class
com.github.dockerjava.jaxrs.LoadImageCmdExec.class
com.github.dockerjava.jaxrs.UnixConnectionSocketFactory.class
com.github.dockerjava.netty.exec.AbstrAsyncDockerCmdExec$1.class
com.github.dockerjava.netty.exec.BuildImageCmdExec.class
com.github.dockerjava.netty.exec.CreateContainerCmdExec$1.class
com.github.dockerjava.netty.exec.DisconnectFromNetworkCmdExec.class
com.github.dockerjava.netty.exec.InspectContainerCmdExec.class
com.github.dockerjava.netty.exec.InspectVolumeCmdExec.class
com.github.dockerjava.netty.exec.ListVolumesCmdExec$1.class
com.github.dockerjava.netty.exec.PushImageCmdExec$1.class
com.github.dockerjava.netty.exec.RestartContainerCmdExec.class
com.github.dockerjava.netty.exec.TagImageCmdExec.class
com.github.dockerjava.netty.exec.WaitContainerCmdExec$1.class
com.github.dockerjava.netty.handler.HttpResponseStreamHandler.class
com.github.dockerjava.netty.InvocationBuilder$6.class
com.github.dockerjava.netty.InvocationBuilder$AsyncResultCallback.class
com.github.dockerjava.netty.NettyDockerCmdExecFactory$InetSocketInitializer.class
META-INF/maven/com.github.docker-java/docker-java/pom.properties
com.github.dockerjava.api.command.AsyncDockerCmd.class
com.github.dockerjava.api.command.CreateContainerResponse.class
com.github.dockerjava.api.command.CreateVolumeCmd$Exec.class
com.github.dockerjava.api.command.DockerCmdSyncExec.class
com.github.dockerjava.api.command.InspectContainerCmd$Exec.class
com.github.dockerjava.api.command.InspectContainerCmd.class
com.github.dockerjava.api.command.InspectExecResponse.class
com.github.dockerjava.api.command.InspectVolumeResponse.class
com.github.dockerjava.api.command.LogContainerCmd$Exec.class
com.github.dockerjava.api.command.PushImageCmd$Exec.class
com.github.dockerjava.api.command.RemoveVolumeCmd$Exec.class
com.github.dockerjava.api.command.SearchImagesCmd$Exec.class
com.github.dockerjava.api.command.SyncDockerCmd.class
com.github.dockerjava.api.command.UpdateContainerCmd$Exec.class
com.github.dockerjava.api.command.UpdateContainerCmd.class
com.github.dockerjava.api.exception.DockerClientException.class
com.github.dockerjava.api.model.AuthConfig.class
com.github.dockerjava.api.model.Capability.class
com.github.dockerjava.api.model.Container.class
com.github.dockerjava.api.model.DriverStatus.class
com.github.dockerjava.api.model.ExposedPort$Serializer.class
com.github.dockerjava.api.model.Identifier.class
com.github.dockerjava.api.model.Links$Deserializer.class
com.github.dockerjava.api.model.Network$ContainerNetworkConfig.class
com.github.dockerjava.api.model.Ports$Deserializer.class
com.github.dockerjava.api.model.ResponseItem$ErrorDetail.class
com.github.dockerjava.api.model.VolumeBinds$Serializer.class
com.github.dockerjava.api.model.VolumeBinds.class
com.github.dockerjava.api.model.VolumesFrom$Serializer.class
com.github.dockerjava.core.async.ResponseStreamProcessor.class
com.github.dockerjava.core.command.AbstrDockerCmd.class
com.github.dockerjava.core.command.ContainerDiffCmdImpl.class
com.github.dockerjava.core.command.CreateNetworkCmdImpl.class
com.github.dockerjava.core.command.InspectContainerCmdImpl.class
com.github.dockerjava.core.command.ListVolumesCmdImpl.class
com.github.dockerjava.core.command.PushImageCmdImpl.class
com.github.dockerjava.core.command.SaveImageCmdImpl.class
com.github.dockerjava.core.command.UpdateContainerCmdImpl.class
com.github.dockerjava.core.dockerfile.Dockerfile$LineTransformer.class
com.github.dockerjava.core.dockerfile.DockerfileStatement$Add.class
com.github.dockerjava.core.GoLangMatchFileFilter.class
com.github.dockerjava.core.RemoteApiVersion$1.class
com.github.dockerjava.jaxrs.ApacheUnixSocket$2.class
com.github.dockerjava.jaxrs.ApacheUnixSocket$3.class
com.github.dockerjava.jaxrs.async.AbstractCallbackNotifier.class
com.github.dockerjava.jaxrs.AttachContainerCmdExec.class
com.github.dockerjava.jaxrs.BuildImageCmdExec.class
com.github.dockerjava.jaxrs.EventsCmdExec.class
com.github.dockerjava.jaxrs.filter.ResponseStatusExceptionFilter.class
com.github.dockerjava.jaxrs.InspectVolumeCmdExec.class
com.github.dockerjava.jaxrs.ListNetworksCmdExec$1.class
com.github.dockerjava.jaxrs.RemoveVolumeCmdExec.class
com.github.dockerjava.jaxrs.StopContainerCmdExec.class
com.github.dockerjava.jaxrs.WaitContainerCmdExec.class
com.github.dockerjava.netty.exec.AuthCmdExec$1.class
com.github.dockerjava.netty.exec.ContainerDiffCmdExec.class
com.github.dockerjava.netty.exec.CreateNetworkCmdExec$1.class
com.github.dockerjava.netty.exec.ExecCreateCmdExec.class
com.github.dockerjava.netty.exec.InfoCmdExec$1.class
com.github.dockerjava.netty.exec.InspectNetworkCmdExec$1.class
com.github.dockerjava.netty.exec.ListImagesCmdExec.class
com.github.dockerjava.netty.exec.PingCmdExec.class
com.github.dockerjava.netty.exec.RemoveVolumeCmdExec.class
com.github.dockerjava.netty.exec.StatsCmdExec.class
com.github.dockerjava.netty.exec.VersionCmdExec$1.class
com.github.dockerjava.netty.handler.HttpResponseHandler.class
com.github.dockerjava.netty.InvocationBuilder$5.class
com.github.dockerjava.netty.NettyDockerCmdExecFactory$1.class
com.github.dockerjava.netty.NettyDockerCmdExecFactory$UnixDomainSocketInitializer.class
org.newsclub.net.unix.AFUNIXSocketImpl$Lenient.class
com.github.dockerjava.api.command.AttachContainerCmd$Exec.class
com.github.dockerjava.api.command.ConnectToNetworkCmd$Exec.class
com.github.dockerjava.api.command.CopyFileFromContainerCmd$Exec.class
com.github.dockerjava.api.command.CreateNetworkCmd$Exec.class
com.github.dockerjava.api.command.DockerCmd.class
com.github.dockerjava.api.command.ExecCreateCmdResponse.class
com.github.dockerjava.api.command.InspectExecCmd.class
com.github.dockerjava.api.command.ListContainersCmd$Exec.class
com.github.dockerjava.api.command.ListImagesCmd$Exec.class
com.github.dockerjava.api.command.LoadImageCmd.class
com.github.dockerjava.api.command.PullImageCmd.class
com.github.dockerjava.api.command.SaveImageCmd$Exec.class
com.github.dockerjava.api.command.StopContainerCmd$Exec.class
com.github.dockerjava.api.command.UnpauseContainerCmd$Exec.class
com.github.dockerjava.api.command.UnpauseContainerCmd.class
com.github.dockerjava.api.exception.BadRequestException.class
com.github.dockerjava.api.exception.NotModifiedException.class
com.github.dockerjava.api.model.Binds$Serializer.class
com.github.dockerjava.api.model.ErrorDetail.class
com.github.dockerjava.api.model.ExposedPorts$Deserializer.class
com.github.dockerjava.api.model.Info.class
com.github.dockerjava.api.model.LogConfig$LoggingType.class
com.github.dockerjava.api.model.Node.class
com.github.dockerjava.api.model.PushResponseItem.class
com.github.dockerjava.api.model.SELContext.class
com.github.dockerjava.api.model.StreamType.class
com.github.dockerjava.api.model.VolumesFrom$Deserializer.class
com.github.dockerjava.core.async.JsonStreamProcessor.class
com.github.dockerjava.core.command.AttachContainerCmdImpl.class
com.github.dockerjava.core.command.CopyArchiveFromContainerCmdImpl.class
com.github.dockerjava.core.command.InspectVolumeCmdImpl.class
com.github.dockerjava.core.command.LogContainerResultCallback.class
com.github.dockerjava.core.command.RemoveImageCmdImpl.class
com.github.dockerjava.core.command.StatsCmdImpl.class
com.github.dockerjava.core.command.WaitContainerResultCallback.class
com.github.dockerjava.core.dockerfile.Dockerfile$ScannedResult$1.class
com.github.dockerjava.core.dockerfile.DockerfileStatement$Env.class
com.github.dockerjava.core.KeystoreSSLConfig$1.class
com.github.dockerjava.core.SSLConfig.class
com.github.dockerjava.core.util.CertificateUtils.class
com.github.dockerjava.jaxrs.AbstrDockerCmdExec.class
com.github.dockerjava.jaxrs.ApacheUnixSocket$8.class
com.github.dockerjava.jaxrs.ApacheUnixSocket$SocketOptionSetter.class
com.github.dockerjava.jaxrs.ApacheUnixSocket.class
com.github.dockerjava.jaxrs.ConnectToNetworkCmdExec.class
com.github.dockerjava.jaxrs.CreateNetworkCmdExec.class
com.github.dockerjava.jaxrs.filter.JsonClientFilter.class
com.github.dockerjava.jaxrs.JerseyDockerCmdExecFactory.class
com.github.dockerjava.jaxrs.RemoveContainerCmdExec.class
com.github.dockerjava.jaxrs.RemoveNetworkCmdExec.class
com.github.dockerjava.jaxrs.StatsCmdExec.class
com.github.dockerjava.jaxrs.VersionCmdExec.class
com.github.dockerjava.netty.exec.AttachContainerCmdExec.class
com.github.dockerjava.netty.exec.ContainerDiffCmdExec$1.class
com.github.dockerjava.netty.exec.CreateImageCmdExec.class
com.github.dockerjava.netty.exec.CreateNetworkCmdExec.class
com.github.dockerjava.netty.exec.ExecStartCmdExec.class
com.github.dockerjava.netty.exec.ListContainersCmdExec.class
com.github.dockerjava.netty.exec.PauseContainerCmdExec.class
com.github.dockerjava.netty.exec.RemoveNetworkCmdExec.class
com.github.dockerjava.netty.exec.StartContainerCmdExec.class
com.github.dockerjava.netty.handler.FramedResponseStreamHandler.class
com.github.dockerjava.netty.InvocationBuilder$1.class
com.github.dockerjava.netty.InvocationBuilder$ResponseCallback.class
com.github.dockerjava.netty.WebTarget.class
META-INF/maven/com.github.docker-java/docker-java/pom.xml
com.github.dockerjava.api.command.AttachContainerCmd.class
com.github.dockerjava.api.command.ConnectToNetworkCmd.class
com.github.dockerjava.api.command.CopyFileFromContainerCmd.class
com.github.dockerjava.api.command.CreateNetworkCmd.class
com.github.dockerjava.api.command.DockerCmdAsyncExec.class
com.github.dockerjava.api.command.DockerCmdExecFactory.class
com.github.dockerjava.api.command.EventsCmd.class
com.github.dockerjava.api.command.HealthState.class
com.github.dockerjava.api.command.InspectContainerResponse.class
com.github.dockerjava.api.command.InspectNetworkCmd$Exec.class
com.github.dockerjava.api.command.InspectNetworkCmd.class
com.github.dockerjava.api.command.ListNetworksCmd$Exec.class
com.github.dockerjava.api.command.ListVolumesCmd.class
com.github.dockerjava.api.command.PingCmd$Exec.class
com.github.dockerjava.api.command.PingCmd.class
com.github.dockerjava.api.command.PullImageCmd$Exec.class
com.github.dockerjava.api.command.RemoveNetworkCmd$Exec.class
com.github.dockerjava.api.command.RemoveNetworkCmd.class
com.github.dockerjava.api.command.SaveImageCmd.class
com.github.dockerjava.api.command.StopContainerCmd.class
com.github.dockerjava.api.DockerClient.class
com.github.dockerjava.api.exception.UnauthorizedException.class
com.github.dockerjava.api.model.Binds.class
com.github.dockerjava.api.model.Event.class
com.github.dockerjava.api.model.EventType.class
com.github.dockerjava.api.model.HealthCheck.class
com.github.dockerjava.api.model.Link.class
com.github.dockerjava.api.model.LxcConf.class
com.github.dockerjava.api.model.Ports$Binding.class
com.github.dockerjava.api.model.ResponseItem$AuxDetail.class
com.github.dockerjava.api.model.ResponseItem$ProgressDetail.class
com.github.dockerjava.api.model.UpdateContainerResponse.class
com.github.dockerjava.api.model.VolumeRW$Serializer.class
com.github.dockerjava.api.model.VolumesRW$Deserializer.class
com.github.dockerjava.core.AuthConfigFile$1.class
com.github.dockerjava.core.command.AttachContainerResultCallback.class
com.github.dockerjava.core.command.CopyArchiveToContainerCmdImpl.class
com.github.dockerjava.core.command.EventsResultCallback.class
com.github.dockerjava.core.command.InpectNetworkCmdImpl.class
com.github.dockerjava.core.command.ListNetworksCmdImpl.class
com.github.dockerjava.core.command.PullImageResultCallback.class
com.github.dockerjava.core.command.RestartContainerCmdImpl.class
com.github.dockerjava.core.command.UnpauseContainerCmdImpl.class
com.github.dockerjava.core.DockerClientConfig.class
com.github.dockerjava.core.dockerfile.DockerfileStatement$1.class
com.github.dockerjava.core.dockerfile.DockerfileStatement.class
com.github.dockerjava.core.LocalDirectorySSLConfig.class
com.github.dockerjava.core.util.CompressArchiveUtil.class
com.github.dockerjava.jaxrs.ApacheUnixSocket$1.class
com.github.dockerjava.jaxrs.DisconnectFromNetworkCmdExec.class
com.github.dockerjava.jaxrs.filter.LoggingFilter$LoggingStream.class
com.github.dockerjava.jaxrs.InspectNetworkCmdExec.class
com.github.dockerjava.jaxrs.ListImagesCmdExec.class
com.github.dockerjava.jaxrs.PingCmdExec.class
com.github.dockerjava.jaxrs.RestartContainerCmdExec.class
com.github.dockerjava.jaxrs.TopContainerCmdExec.class
com.github.dockerjava.netty.DockerCmdExecFactoryImpl.class
com.github.dockerjava.netty.exec.BuildImageCmdExec$1.class
com.github.dockerjava.netty.exec.CopyArchiveToContainerCmdExec.class
com.github.dockerjava.netty.exec.CreateContainerCmdExec.class
com.github.dockerjava.netty.exec.InfoCmdExec.class
com.github.dockerjava.netty.exec.InspectNetworkCmdExec.class
com.github.dockerjava.netty.exec.ListNetworksCmdExec$1.class
com.github.dockerjava.netty.exec.PullImageCmdExec$1.class
com.github.dockerjava.netty.exec.StatsCmdExec$1.class
com.github.dockerjava.netty.handler.HttpConnectionHijackHandler.class
com.github.dockerjava.netty.handler.JsonResponseCallbackHandler.class
com.github.dockerjava.netty.NettyDockerCmdExecFactory$InetSocketInitializer$1.class
com.github.dockerjava.netty.NettyDockerCmdExecFactory.class
org.newsclub.net.unix.AFUNIXSocketImpl$AFUNIXInputStream.class
com.github.dockerjava.api.command.AuthCmd$Exec.class
com.github.dockerjava.api.command.ContainerDiffCmd$Exec.class
com.github.dockerjava.api.command.ContainerDiffCmd.class
com.github.dockerjava.api.command.CreateContainerCmd.class
com.github.dockerjava.api.command.CreateImageCmd.class
com.github.dockerjava.api.command.DisconnectFromNetworkCmd$Exec.class
com.github.dockerjava.api.command.ExecCreateCmd$Exec.class
com.github.dockerjava.api.command.HealthStateLog.class
com.github.dockerjava.api.command.InspectExecCmd$Exec.class
com.github.dockerjava.api.command.InspectImageResponse.class
com.github.dockerjava.api.command.ListContainersCmd.class
com.github.dockerjava.api.command.ListImagesCmd.class
com.github.dockerjava.api.command.ListNetworksCmd.class
com.github.dockerjava.api.command.PushImageCmd.class
com.github.dockerjava.api.command.RemoveContainerCmd$Exec.class
com.github.dockerjava.api.command.RenameContainerCmd$Exec.class
com.github.dockerjava.api.command.RenameContainerCmd.class
com.github.dockerjava.api.command.StartContainerCmd.class
com.github.dockerjava.api.command.TopContainerCmd$Exec.class
com.github.dockerjava.api.command.VersionCmd.class
com.github.dockerjava.api.exception.InternalServerErrorException.class
com.github.dockerjava.api.model.AuthResponse.class
com.github.dockerjava.api.model.Device.class
com.github.dockerjava.api.model.ExposedPort.class
com.github.dockerjava.api.model.Image.class
com.github.dockerjava.api.model.Links$Serializer.class
com.github.dockerjava.api.model.Network$Ipam$Config.class
com.github.dockerjava.api.model.Network.class
com.github.dockerjava.api.model.PropagationMode.class
com.github.dockerjava.api.model.RestartPolicy.class
com.github.dockerjava.api.model.VolumeBind.class
com.github.dockerjava.api.model.Volumes$Serializer.class
com.github.dockerjava.api.model.WaitResponse.class
com.github.dockerjava.core.command.AbstrAsyncDockerCmd.class
com.github.dockerjava.core.command.BuildImageResultCallback.class
com.github.dockerjava.core.command.CreateContainerCmdImpl$NetworkingConfig.class
com.github.dockerjava.core.command.ExecCreateCmdImpl.class
com.github.dockerjava.core.command.ExecStartResultCallback$1.class
com.github.dockerjava.core.command.ExecStartResultCallback.class
com.github.dockerjava.core.command.KillContainerCmdImpl.class
com.github.dockerjava.core.command.PauseContainerCmdImpl.class
com.github.dockerjava.core.command.RemoveNetworkCmdImpl.class
com.github.dockerjava.core.command.RenameContainerCmdImpl.class
com.github.dockerjava.core.command.TopContainerCmdImpl.class
com.github.dockerjava.core.DockerClientBuilder.class
com.github.dockerjava.core.dockerfile.Dockerfile.class
com.github.dockerjava.core.exception.GoLangFileMatchException.class
com.github.dockerjava.core.exception.InvalidRepositoryNameException.class
com.github.dockerjava.core.GoLangFileMatch$RangeParseState.class
com.github.dockerjava.core.NameParser.class
com.github.dockerjava.core.util.FiltersEncoder.class
com.github.dockerjava.jaxrs.CommitCmdExec.class
com.github.dockerjava.jaxrs.CreateImageCmdExec.class
com.github.dockerjava.jaxrs.filter.FollowRedirectsFilter.class
com.github.dockerjava.jaxrs.InspectContainerCmdExec.class
com.github.dockerjava.jaxrs.ListContainersCmdExec$1.class
com.github.dockerjava.jaxrs.PushImageCmdExec.class
com.github.dockerjava.jaxrs.SearchImagesCmdExec$1.class
com.github.dockerjava.jaxrs.UnpauseContainerCmdExec.class
com.github.dockerjava.netty.exec.AbstrAsyncDockerCmdExec.class
com.github.dockerjava.netty.exec.CommitCmdExec$1.class
com.github.dockerjava.netty.exec.CopyFileFromContainerCmdExec.class
com.github.dockerjava.netty.exec.CreateVolumeCmdExec$1.class
com.github.dockerjava.netty.exec.InspectImageCmdExec$1.class
com.github.dockerjava.netty.exec.InspectImageCmdExec.class
com.github.dockerjava.netty.exec.ListImagesCmdExec$1.class
com.github.dockerjava.netty.exec.LogContainerCmdExec.class
com.github.dockerjava.netty.exec.RemoveImageCmdExec.class
com.github.dockerjava.netty.exec.RenameContainerCmdExec.class
com.github.dockerjava.netty.exec.StopContainerCmdExec.class
com.github.dockerjava.netty.exec.VersionCmdExec.class
com.github.dockerjava.netty.handler.HttpResponseStreamHandler$HttpResponseInputStream.class
com.github.dockerjava.netty.InvocationBuilder$4.class
com.github.dockerjava.netty.MediaType.class
com.github.dockerjava.netty.NettyDockerCmdExecFactory$UnixDomainSocketInitializer$2.class
com.github.dockerjava.api.command.AuthCmd.class
com.github.dockerjava.api.command.CreateContainerCmd$Exec.class
com.github.dockerjava.api.command.CreateNetworkResponse.class
com.github.dockerjava.api.command.ExecStartCmd$Exec.class
com.github.dockerjava.api.command.ExecStartCmd.class
com.github.dockerjava.api.command.GraphData.class
com.github.dockerjava.api.command.InspectContainerResponse$ContainerState.class
com.github.dockerjava.api.command.InspectImageCmd$Exec.class
com.github.dockerjava.api.command.InspectImageCmd.class
com.github.dockerjava.api.command.KillContainerCmd.class
com.github.dockerjava.api.command.ListVolumesCmd$Exec.class
com.github.dockerjava.api.command.PauseContainerCmd.class
com.github.dockerjava.api.command.RemoveContainerCmd.class
com.github.dockerjava.api.command.StartContainerCmd$Exec.class
com.github.dockerjava.api.command.TagImageCmd.class
com.github.dockerjava.api.command.VersionCmd$Exec.class
com.github.dockerjava.api.exception.DockerException.class
com.github.dockerjava.api.model.AuthConfigurations.class
com.github.dockerjava.api.model.ChangeLog.class
com.github.dockerjava.api.model.ContainerPort.class
com.github.dockerjava.api.model.ExposedPort$Deserializer.class
com.github.dockerjava.api.model.HostConfig.class
com.github.dockerjava.api.model.Links.class
com.github.dockerjava.api.model.Network$Ipam.class
com.github.dockerjava.api.model.Ports.class
com.github.dockerjava.api.model.ResponseItem.class
com.github.dockerjava.api.model.Version.class
com.github.dockerjava.api.model.VolumeRW.class
com.github.dockerjava.api.model.VolumesRW$Serializer.class
com.github.dockerjava.core.AuthConfigFile$2.class
com.github.dockerjava.core.command.BuildImageCmdImpl.class
com.github.dockerjava.core.command.CreateContainerCmdImpl.class
com.github.dockerjava.core.command.InspectExecCmdImpl.class
com.github.dockerjava.core.command.LoadImageCmdImpl.class
com.github.dockerjava.core.command.PushImageResultCallback.class
com.github.dockerjava.core.command.SearchImagesCmdImpl.class
com.github.dockerjava.core.command.VersionCmdImpl.class
com.github.dockerjava.core.DockerClientImpl.class
com.github.dockerjava.core.NameParser$HostnameReposName.class
com.github.dockerjava.core.util.FilePathUtil.class
com.github.dockerjava.jaxrs.ApacheUnixSocket$6.class
com.github.dockerjava.jaxrs.ContainerDiffCmdExec.class
com.github.dockerjava.jaxrs.CopyArchiveToContainerCmdExec.class
com.github.dockerjava.jaxrs.CreateContainerCmdExec.class
com.github.dockerjava.jaxrs.ExecStartCmdExec.class
com.github.dockerjava.jaxrs.InfoCmdExec.class
com.github.dockerjava.jaxrs.InspectExecCmdExec.class
com.github.dockerjava.jaxrs.ListContainersCmdExec.class
com.github.dockerjava.jaxrs.PauseContainerCmdExec.class
com.github.dockerjava.jaxrs.RenameContainerCmdExec.class
com.github.dockerjava.jaxrs.TagImageCmdExec.class
com.github.dockerjava.netty.ChannelProvider.class
com.github.dockerjava.netty.exec.AuthCmdExec.class
com.github.dockerjava.netty.exec.CopyArchiveFromContainerCmdExec.class
com.github.dockerjava.netty.exec.ExecCreateCmdExec$1.class
com.github.dockerjava.netty.exec.InspectExecCmdExec.class
com.github.dockerjava.netty.exec.ListContainersCmdExec$1.class
com.github.dockerjava.netty.exec.LoadImageCmdExec.class
com.github.dockerjava.netty.exec.RemoveContainerCmdExec.class
com.github.dockerjava.netty.exec.SearchImagesCmdExec$1.class
com.github.dockerjava.netty.exec.TopContainerCmdExec$1.class
com.github.dockerjava.netty.exec.WaitContainerCmdExec.class
com.github.dockerjava.netty.handler.JsonRequestHandler.class
com.github.dockerjava.netty.InvocationBuilder$7.class
com.github.dockerjava.netty.NettyDockerCmdExecFactory$InetSocketInitializer$2.class
com.github.dockerjava.netty.NettyDockerCmdExecFactory$NettyInitializer.class
docker-java.properties
org.newsclub.net.unix.AFUNIXSocketImpl.class
com.github.dockerjava.api.command.BuildImageCmd$Exec.class
com.github.dockerjava.api.command.CopyArchiveFromContainerCmd$Exec.class
com.github.dockerjava.api.command.CopyArchiveFromContainerCmd.class
com.github.dockerjava.api.command.CreateImageCmd$Exec.class
com.github.dockerjava.api.command.CreateVolumeResponse.class
com.github.dockerjava.api.command.GraphDriver.class
com.github.dockerjava.api.command.InspectContainerResponse$Mount.class
com.github.dockerjava.api.command.KillContainerCmd$Exec.class
com.github.dockerjava.api.command.LogContainerCmd.class
com.github.dockerjava.api.command.PauseContainerCmd$Exec.class
com.github.dockerjava.api.command.RemoveVolumeCmd.class
com.github.dockerjava.api.command.SearchImagesCmd.class
com.github.dockerjava.api.command.TagImageCmd$Exec.class
com.github.dockerjava.api.exception.ConflictException.class
com.github.dockerjava.api.model.AccessMode.class
com.github.dockerjava.api.model.BuildResponseItem.class
com.github.dockerjava.api.model.ContainerNetworkSettings.class
com.github.dockerjava.api.model.Frame.class
com.github.dockerjava.api.model.InternetProtocol.class
com.github.dockerjava.api.model.LogConfig.class
com.github.dockerjava.api.model.PortBinding.class
com.github.dockerjava.api.model.Repository.class
com.github.dockerjava.api.model.Statistics.class
com.github.dockerjava.api.model.Ulimit.class
com.github.dockerjava.api.model.VolumeRW$Deserializer.class
#内容未全部加载,请点击展开加载全部代码(NowJava.com)
|
依赖Jar: |
jackson-jaxrs-json-provider-${jackson-jaxrs.version}.jar
/com.fasterxml.jackson.jaxrs/jackson-jaxrs-json-provider/${jackson-jaxrs.version}
查看jackson-jaxrs-json-provider所有版本文件
jersey-apache-connector-${jersey.version}.jar
/org.glassfish.jersey.connectors/jersey-apache-connector/${jersey.version}
查看jersey-apache-connector所有版本文件
httpcore-4.4.5.jar
/org.apache.httpcomponents/httpcore/4.4.5
查看httpcore所有版本文件
httpclient-${httpclient.version}.jar
/org.apache.httpcomponents/httpclient/${httpclient.version}
查看httpclient所有版本文件
jersey-client-${jersey.version}.jar
/org.glassfish.jersey.core/jersey-client/${jersey.version}
查看jersey-client所有版本文件
junixsocket-common-${junixsocket.version}.jar
/com.kohlschutter.junixsocket/junixsocket-common/${junixsocket.version}
查看junixsocket-common所有版本文件
junixsocket-native-common-${junixsocket.version}.jar
/com.kohlschutter.junixsocket/junixsocket-native-common/${junixsocket.version}
查看junixsocket-native-common所有版本文件
commons-compress-${commons-compress.version}.jar
/org.apache.commons/commons-compress/${commons-compress.version}
查看commons-compress所有版本文件
commons-codec-${commons-codec.version}.jar
/commons-codec/commons-codec/${commons-codec.version}
查看commons-codec所有版本文件
commons-lang-${commons-lang.version}.jar
/commons-lang/commons-lang/${commons-lang.version}
查看commons-lang所有版本文件
commons-io-${commons-io.version}.jar
/commons-io/commons-io/${commons-io.version}
查看commons-io所有版本文件
slf4j-api-${slf4j-api.version}.jar
/org.slf4j/slf4j-api/${slf4j-api.version}
查看slf4j-api所有版本文件
jcl-over-slf4j-1.7.21.jar
/org.slf4j/jcl-over-slf4j/1.7.21
查看jcl-over-slf4j所有版本文件
guava-${guava.version}.jar
/com.google.guava/guava/${guava.version}
查看guava所有版本文件
bcpkix-jdk15on-${bouncycastle.version}.jar
/org.bouncycastle/bcpkix-jdk15on/${bouncycastle.version}
查看bcpkix-jdk15on所有版本文件
logback-core-${logback.version}.jar
/ch.qos.logback/logback-core/${logback.version}
查看logback-core所有版本文件
logback-classic-${logback.version}.jar
/ch.qos.logback/logback-classic/${logback.version}
查看logback-classic所有版本文件
testng-${testng.version}.jar
/org.testng/testng/${testng.version}
查看testng所有版本文件
hamcrest-library-${hamcrest.library.version}.jar
/org.hamcrest/hamcrest-library/${hamcrest.library.version}
查看hamcrest-library所有版本文件
lambdaj-${lambdaj.version}.jar
/com.googlecode.lambdaj/lambdaj/${lambdaj.version}
查看lambdaj所有版本文件
jpa-matchers-${hamcrest.jpa-matchers}.jar
/org.testinfected.hamcrest-matchers/jpa-matchers/${hamcrest.jpa-matchers}
查看jpa-matchers所有版本文件
mockito-core-${mockito.version}.jar
/org.mockito/mockito-core/${mockito.version}
查看mockito-core所有版本文件
annotations-3.0.1.jar
/com.google.code.findbugs/annotations/3.0.1
查看annotations所有版本文件
netty-codec-http-${netty.version}.jar
/io.netty/netty-codec-http/${netty.version}
查看netty-codec-http所有版本文件
netty-handler-${netty.version}.jar
/io.netty/netty-handler/${netty.version}
查看netty-handler所有版本文件
netty-handler-proxy-${netty.version}.jar
/io.netty/netty-handler-proxy/${netty.version}
查看netty-handler-proxy所有版本文件
netty-transport-native-epoll-${netty.version}.jar
/io.netty/netty-transport-native-epoll/${netty.version}
查看netty-transport-native-epoll所有版本文件
junit-4.12.jar
/junit/junit/4.12
查看junit所有版本文件
|