组织ID: |
com.ning |
项目ID: |
async-http-client |
版本: |
1.3.2 |
最后修改时间: |
2019-10-22 23:16:18 |
包类型: |
jar |
标题: |
async-http-client |
描述: |
Async Http Client library purpose is to allow Java applications to easily execute HTTP requests and
asynchronously process the HTTP responses.
|
相关URL: |
http://github.com/AsyncHttpClient/async-http-client |
大小: |
199.75KB |
|
Maven引入代码: |
<dependency>
<groupId>com.ning</groupId>
<artifactId>async-http-client</artifactId>
<version>1.3.2</version>
</dependency>
|
Gradle引入代码: |
com.ning:async-http-client:1.3.2
|
下载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">
<parent>
<groupId>org.sonatype.oss</groupId>
<artifactId>oss-parent</artifactId>
<version>5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>com.ning</groupId>
<artifactId>async-http-client</artifactId>
<name>async-http-client</name>
<version>1.3.2</version>
<packaging>jar</packaging>
<description>
Async Http Client library purpose is to allow Java applications to easily execute HTTP requests and
asynchronously process the HTTP responses.
</description>
<url>http://github.com/AsyncHttpClient/async-http-client</url>
<scm>
<connection>scm:git:git@github.com:AsynHttpClient/async-http-client.git</connection>
<url>scm:git:git@github.com:AsyncHttpClient/async-http-client.git</url>
<developerConnection>scm:git:git@github.com:AsyncHttpClient/async-http-client.git</developerConnection>
</scm>
<prerequisites>
<maven>2.0.9</maven>
</prerequisites>
<developers>
<developer>
<id>brianm</id>
<name>Brian McCallister</name>
<email>brianm@skife.org</email>
</developer>
<developer>
<id>jfarcand</id>
<name>Jeanfrancois Arcand</name>
<email>jfarcand@apache.org</email>
</developer>
<developer>
<id>thomd</id>
<name>Thomas Dudziak</name>
<email>tomdz@apache.org</email>
</developer>
<developer>
<id>neotyk</id>
<name>Hubert Iwaniuk</name>
</developer>
</developers>
<licenses>
<license>
<name>Apache License 2.0</name>
<url>http://www.apache.org/licenses/LICENSE-2.0.html</url>
<distribution>repo</distribution>
</license>
</licenses>
<dependencies>
<dependency>
<groupId>org.jboss.netty</groupId>
<artifactId>netty</artifactId>
<version>3.2.3.Final</version>
<exclusions>
<exclusion>
<groupId>javax.servlet</groupId>
<artifactId>servlet-api</artifactId>
</exclusion>
<exclusion>
<groupId>commons-logging</groupId>
<artifactId>commons-logging</artifactId>
</exclusion>
</exclusions>
</dependency>
<!-- Provided logging implementations (aside from java.util.logging) -->
<dependency>
<groupId>log4j</groupId>
<artifactId>log4j</artifactId>
<version>1.2.13</version>
<optional>true</optional>
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-api</artifactId>
<version>1.5.6</version>
<optional>true</optional>
</dependency>
<!-- Test dependencies -->
<dependency>
<groupId>org.testng</groupId>
<artifactId>testng</artifactId>
<version>5.8</version>
<scope>test</scope>
<classifier>jdk15</classifier>
</dependency>
<dependency>
<groupId>org.eclipse.jetty</groupId>
<artifactId>jetty-server</artifactId>
<version>7.1.4.v20100610</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.eclipse.jetty</groupId>
<artifactId>jetty-servlet</artifactId>
<version>7.1.4.v20100610</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.eclipse.jetty</groupId>
<artifactId>jetty-servlets</artifactId>
<version>7.1.4.v20100610</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.eclipse.jetty</groupId>
<artifactId>jetty-security</artifactId>
<version>7.1.4.v20100610</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-simple</artifactId>
<version>1.5.6</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.apache.tomcat</groupId>
<artifactId>coyote</artifactId>
<version>6.0.29</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.apache.tomcat</groupId>
<artifactId>catalina</artifactId>
<version>6.0.29</version>
<scope>test</scope>
<exclusions>
<exclusion>
<artifactId>servlet-api</artifactId>
<groupId>org.apache.tomcat</groupId>
</exclusion>
</exclusions>
</dependency>
</dependencies>
<build>
<defaultGoal>install</defaultGoal>
<plugins>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>animal-sniffer-maven-plugin</artifactId>
<version>1.6</version>
<configuration>
<signature>
<groupId>org.codehaus.mojo.signature</groupId>
<artifactId>java15</artifactId>
<version>1.0</version>
</signature>
</configuration>
<executions>
<execution>
<id>check-java-1.5-compat</id>
<phase>process-classes</phase>
<goals>
<goal>check</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.felix</groupId>
<artifactId>maven-bundle-plugin</artifactId>
<version>2.0.1</version>
<extensions>true</extensions>
<configuration>
<manifestLocation>META-INF</manifestLocation>
<instructions>
<Bundle-Vendor>Sonatype</Bundle-Vendor>
<Import-Package>
!com.ning.http.*,
*
</Import-Package>
<Export-Package>
com.ning.http.*
</Export-Package>
</instructions>
</configuration>
<executions>
<execution>
<id>osgi-bundle</id>
<phase>package</phase>
<goals>
<goal>bundle</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-enforcer-plugin</artifactId>
<executions>
<execution>
<id>enforce-versions</id>
<goals>
<goal>enforce</goal>
</goals>
<configuration>
<rules>
<requireMavenVersion>
<version>2.0.9</version>
</requireMavenVersion>
<requireJavaVersion>
<version>1.5</version>
</requireJavaVersion>
</rules>
</configuration>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<configuration>
<source>1.5</source>
<target>1.5</target>
<encoding>UTF-8</encoding>
<maxmem>1024m</maxmem>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-resources-plugin</artifactId>
<configuration>
<encoding>UTF-8</encoding>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<configuration>
<argLine>
-Dcom.ning.http.client.logging.LoggerProvider.class=com.ning.http.client.logging.Slf4jLoggerProvider
</argLine>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-release-plugin</artifactId>
<version>2.0-beta-9</version>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
<executions>
<execution>
<id>attach-sources</id>
<phase>verify</phase>
<goals>
<goal>jar</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<version>2.5</version>
<configuration>
<source>1.6</source>
<target>1.6</target>
<encoding>UTF-8</encoding>
<maxmemory>1g</maxmemory>
<links>
<link>http://java.sun.com/javase/6/docs/api/</link>
</links>
</configuration>
<executions>
<execution>
<id>attach-javadocs</id>
<phase>verify</phase>
<goals>
<goal>jar</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-shade-plugin</artifactId>
<version>1.2.1</version>
<executions>
<execution>
<phase>package</phase>
<goals>
<goal>shade</goal>
</goals>
<configuration>
<shadedArtifactAttached>true</shadedArtifactAttached>
<shadedClassifierName>shaded</shadedClassifierName>
<artifactSet>
<excludes>
<exclude>junit:junit</exclude>
<exclude>log4j:log4j</exclude>
<excluse>org.slf4j:slf4j-api</excluse>
</excludes>
</artifactSet>
<transformers>
<transformer implementation="org.apache.maven.plugins.shade.resource.ServicesResourceTransformer" />
<transformer implementation="org.apache.maven.plugins.shade.resource.ComponentsXmlResourceTransformer" />
<transformer implementation="org.apache.maven.plugins.shade.resource.ManifestResourceTransformer" />
</transformers>
</configuration>
</execution>
</executions>
</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>
<executions>
<execution>
<id>sign-artifacts</id>
<phase>verify</phase>
<goals>
<goal>sign</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
</profile>
<profile>
<id>offline-testing</id>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<configuration>
<groups>standalone</groups>
<argLine>
-Dcom.ning.http.client.logging.LoggerProvider.class=com.ning.http.client.logging.Slf4jLoggerProvider
</argLine>
</configuration>
</plugin>
</plugins>
</build>
</profile>
<profile>
<id>online-testing</id>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<configuration>
<groups>standalone, online</groups>
<argLine>
-Dcom.ning.http.client.logging.LoggerProvider.class=com.ning.http.client.logging.Slf4jLoggerProvider
</argLine>
</configuration>
</plugin>
</plugins>
</build>
</profile>
</profiles>
<distributionManagement>
<repository>
<id>sonatype-nexus-staging</id>
<name>Sonatype Release</name>
<url>http://oss.sonatype.org/service/local/staging/deploy/maven2</url>
</repository>
<snapshotRepository>
<id>sonatype-nexus-snapshots</id>
<name>sonatype-nexus-snapshots</name>
<url>${distMgmtSnapshotsUrl}</url>
</snapshotRepository>
</distributionManagement>
<repositories>
<repository>
<id>repository.jboss.org</id>
<url>https://repository.jboss.org/nexus/content/groups/public/</url>
<snapshots>
<enabled>false</enabled>
</snapshots>
</repository>
</repositories>
<properties>
<distMgmtSnapshotsUrl>http://oss.sonatype.org/content/repositories/snapshots</distMgmtSnapshotsUrl>
</properties>
</project>
|
Jar包内容: |
META-INF/MANIFEST.MF
META-INF/maven/com.ning/async-http-client/pom.properties
META-INF/maven/com.ning/async-http-client/pom.xml
com.ning.http.client.AsyncCompletionHandler.class
com.ning.http.client.AsyncCompletionHandlerBase.class
com.ning.http.client.AsyncHandler$STATE.class
com.ning.http.client.AsyncHandler.class
com.ning.http.client.AsyncHttpClient$1.class
com.ning.http.client.AsyncHttpClient$BoundRequestBuilder.class
com.ning.http.client.AsyncHttpClient.class
com.ning.http.client.AsyncHttpClientConfig$1.class
com.ning.http.client.AsyncHttpClientConfig$2.class
com.ning.http.client.AsyncHttpClientConfig$Builder$1.class
com.ning.http.client.AsyncHttpClientConfig$Builder$2.class
com.ning.http.client.AsyncHttpClientConfig$Builder.class
com.ning.http.client.AsyncHttpClientConfig.class
com.ning.http.client.AsyncHttpProvider.class
com.ning.http.client.AsyncHttpProviderConfig.class
com.ning.http.client.Body.class
com.ning.http.client.BodyGenerator.class
com.ning.http.client.ByteArrayPart.class
com.ning.http.client.ConnectionsPool.class
com.ning.http.client.Cookie.class
com.ning.http.client.FileBodyGenerator$FileBody.class
com.ning.http.client.FileBodyGenerator.class
com.ning.http.client.FilePart.class
com.ning.http.client.FluentCaseInsensitiveStringsMap.class
com.ning.http.client.FluentStringsMap.class
com.ning.http.client.FutureImpl.class
com.ning.http.client.HttpContent.class
com.ning.http.client.HttpResponseBodyPart.class
com.ning.http.client.HttpResponseHeaders.class
com.ning.http.client.HttpResponseStatus.class
com.ning.http.client.MaxRedirectException.class
com.ning.http.client.Part.class
com.ning.http.client.PerRequestConfig.class
com.ning.http.client.ProgressAsyncHandler.class
com.ning.http.client.ProxyServer$Protocol.class
com.ning.http.client.ProxyServer.class
com.ning.http.client.RandomAccessBody.class
com.ning.http.client.Realm$1.class
com.ning.http.client.Realm$AuthScheme.class
com.ning.http.client.Realm$RealmBuilder.class
com.ning.http.client.Realm.class
com.ning.http.client.Request$EntityWriter.class
com.ning.http.client.Request.class
com.ning.http.client.RequestBuilder.class
com.ning.http.client.RequestBuilderBase$RequestImpl.class
com.ning.http.client.RequestBuilderBase.class
com.ning.http.client.Response$ResponseBuilder.class
com.ning.http.client.Response.class
com.ning.http.client.SSLEngineFactory.class
com.ning.http.client.SignatureCalculator.class
com.ning.http.client.StringPart.class
com.ning.http.client.filter.AsyncFilter.class
com.ning.http.client.filter.AsyncFilterContext.class
com.ning.http.client.filter.AsyncFilterException.class
com.ning.http.client.filter.ThrottleRequestAsyncFilter$AsyncHandlerWrapper.class
com.ning.http.client.filter.ThrottleRequestAsyncFilter.class
com.ning.http.client.logging.JulLogger.class
com.ning.http.client.logging.JulLoggerProvider.class
com.ning.http.client.logging.Log4jLogger.class
com.ning.http.client.logging.Log4jLoggerProvider.class
com.ning.http.client.logging.LogManager.class
com.ning.http.client.logging.Logger.class
com.ning.http.client.logging.LoggerProvider.class
com.ning.http.client.logging.Slf4jLogger.class
com.ning.http.client.logging.Slf4jLoggerProvider.class
com.ning.http.client.oauth.ConsumerKey.class
com.ning.http.client.oauth.OAuthSignatureCalculator$OAuthParameterSet.class
com.ning.http.client.oauth.OAuthSignatureCalculator$Parameter.class
com.ning.http.client.oauth.OAuthSignatureCalculator.class
com.ning.http.client.oauth.RequestToken.class
com.ning.http.client.oauth.ThreadSafeHMAC.class
com.ning.http.client.providers.jdk.JDKAsyncHttpProvider$1.class
com.ning.http.client.providers.jdk.JDKAsyncHttpProvider$2.class
com.ning.http.client.providers.jdk.JDKAsyncHttpProvider$3.class
com.ning.http.client.providers.jdk.JDKAsyncHttpProvider$AsyncHttpUrlConnection.class
com.ning.http.client.providers.jdk.JDKAsyncHttpProvider.class
com.ning.http.client.providers.jdk.JDKAsyncHttpProviderConfig.class
com.ning.http.client.providers.jdk.JDKFuture.class
com.ning.http.client.providers.jdk.JDKResponse.class
com.ning.http.client.providers.jdk.ResponseBodyPart.class
com.ning.http.client.providers.jdk.ResponseHeaders.class
com.ning.http.client.providers.jdk.ResponseStatus.class
com.ning.http.client.providers.netty.BodyChunkedInput.class
com.ning.http.client.providers.netty.BodyFileRegion.class
com.ning.http.client.providers.netty.NettyAsyncHttpProvider$1.class
com.ning.http.client.providers.netty.NettyAsyncHttpProvider$10.class
com.ning.http.client.providers.netty.NettyAsyncHttpProvider$11.class
com.ning.http.client.providers.netty.NettyAsyncHttpProvider$12.class
com.ning.http.client.providers.netty.NettyAsyncHttpProvider$13.class
com.ning.http.client.providers.netty.NettyAsyncHttpProvider$14.class
com.ning.http.client.providers.netty.NettyAsyncHttpProvider$15.class
com.ning.http.client.providers.netty.NettyAsyncHttpProvider$2.class
com.ning.http.client.providers.netty.NettyAsyncHttpProvider$3.class
com.ning.http.client.providers.netty.NettyAsyncHttpProvider$4.class
com.ning.http.client.providers.netty.NettyAsyncHttpProvider$5.class
com.ning.http.client.providers.netty.NettyAsyncHttpProvider$6.class
com.ning.http.client.providers.netty.NettyAsyncHttpProvider$7.class
com.ning.http.client.providers.netty.NettyAsyncHttpProvider$8.class
com.ning.http.client.providers.netty.NettyAsyncHttpProvider$9.class
com.ning.http.client.providers.netty.NettyAsyncHttpProvider$AsyncCallable.class
com.ning.http.client.providers.netty.NettyAsyncHttpProvider$DiscardEvent.class
com.ning.http.client.providers.netty.NettyAsyncHttpProvider$ProgressListener.class
com.ning.http.client.providers.netty.NettyAsyncHttpProvider$ReaperFuture.class
com.ning.http.client.providers.netty.NettyAsyncHttpProvider$ThreadLocalBoolean.class
com.ning.http.client.providers.netty.NettyAsyncHttpProvider.class
com.ning.http.client.providers.netty.NettyAsyncHttpProviderConfig.class
com.ning.http.client.providers.netty.NettyAsyncResponse.class
com.ning.http.client.providers.netty.NettyConnectListener$1.class
#内容未全部加载,请点击展开加载全部代码(NowJava.com)
|
依赖Jar: |
netty-3.2.3.Final.jar
/org.jboss.netty/netty/3.2.3.Final
查看netty所有版本文件
log4j-1.2.13.jar
/log4j/log4j/1.2.13
查看log4j所有版本文件
slf4j-api-1.5.6.jar
/org.slf4j/slf4j-api/1.5.6
查看slf4j-api所有版本文件
testng-5.8.jar
/org.testng/testng/5.8
查看testng所有版本文件
jetty-server-7.1.4.v20100610.jar
/org.eclipse.jetty/jetty-server/7.1.4.v20100610
查看jetty-server所有版本文件
jetty-servlet-7.1.4.v20100610.jar
/org.eclipse.jetty/jetty-servlet/7.1.4.v20100610
查看jetty-servlet所有版本文件
jetty-servlets-7.1.4.v20100610.jar
/org.eclipse.jetty/jetty-servlets/7.1.4.v20100610
查看jetty-servlets所有版本文件
jetty-security-7.1.4.v20100610.jar
/org.eclipse.jetty/jetty-security/7.1.4.v20100610
查看jetty-security所有版本文件
slf4j-simple-1.5.6.jar
/org.slf4j/slf4j-simple/1.5.6
查看slf4j-simple所有版本文件
coyote-6.0.29.jar
/org.apache.tomcat/coyote/6.0.29
查看coyote所有版本文件
catalina-6.0.29.jar
/org.apache.tomcat/catalina/6.0.29
查看catalina所有版本文件
|