You can download jersey-ahc-client-1.0.5.jar in this page.
Eclipse Public License, Version 1.0
jersey-ahc-client-1.0.5.jar file has the following types.
META-INF/MANIFEST.MF META-INF/maven/org.jfarcand/jersey-ahc-client/pom.properties META-INF/maven/org.jfarcand/jersey-ahc-client/pom.xml org.sonatype.spice.jersey.client.ahc.AhcClientHandler.class org.sonatype.spice.jersey.client.ahc.AhcHttpClient.class org.sonatype.spice.jersey.client.ahc.AhcRequestWriter.class org.sonatype.spice.jersey.client.ahc.config.AhcConfig.class org.sonatype.spice.jersey.client.ahc.config.DefaultAhcConfig.class
jersey-ahc-client-1.0.5.pom file content.
<?xml version="1.0" encoding="UTF-8"?> <!-- ~ Copyright (c) 2011 Sonatype, Inc. ~ All rights reserved. This program and the accompanying materials ~ are made available under the terms of the Eclipse Public License v1.0 ~ and Apache License v2.0 which accompanies this distribution. ~ The Eclipse Public License is available at ~ http://www.eclipse.org/legal/epl-v10.html ~ The Apache License v2.0 is available at ~ http://www.apache.org/licenses/LICENSE-2.0.html ~ You may elect to redistribute this code under either of these licenses. --> <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>org.jfarcand</groupId> <artifactId>jersey-ahc-client</artifactId> <name>jersey-ahc-client</name> <version>1.0.5</version> <packaging>jar</packaging> <description> Async Http Client implementation for the Jersey Client API. </description> <url>http://github.com/AsyncHttpClient/jersey-ahc-client</url> <scm> <connection>scm:git:git@github.com:AsyncHttpClient/jersey-ahc-client.git</connection> <url>scm:git:git@github.com:AsyncHttpClient/jersey-ahc-client.git</url> <developerConnection>scm:git:git@github.com:AsyncHttpClient/jersey-ahc-client.git</developerConnection> </scm> <prerequisites> <maven>2.0.9</maven> </prerequisites> <developers> <developer> <id>jfarcand</id> <name>Jeanfrancois Arcand</name> <email>jfarcand@apache.org</email> </developer> <developer> <id>simonetripodi</id> <name>Simone Tripodi</name> <email>simonetripodi@apache.org</email> </developer> </developers> <licenses> <license> <name>Eclipse Public License, Version 1.0</name> <url>http://www.eclipse.org/legal/epl-v10.html</url> <distribution>repo</distribution> </license> <license> <name>Apache License, Version 2.0</name> <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url> <distribution>repo</distribution> </license> </licenses> <properties> <jersey.version>1.14</jersey.version> <async-http-client-version>1.8.5</async-http-client-version> <netty-version>3.9.0.Final</netty-version> </properties> <dependencies> <dependency> <groupId>com.sun.jersey</groupId> <artifactId>jersey-client</artifactId> <version>${jersey.version}</version> </dependency> <dependency> <groupId>com.sun.jersey</groupId> <artifactId>jersey-json</artifactId> <version>${jersey.version}</version> </dependency> <dependency> <groupId>javax.ws.rs</groupId> <artifactId>jsr311-api</artifactId> <version>1.1.1</version> <scope>provided</scope> </dependency> <dependency> <groupId>com.ning</groupId> <artifactId>async-http-client</artifactId> <version>${async-http-client-version}</version> </dependency> <dependency> <groupId>com.sun.xml.bind</groupId> <artifactId>jaxb-impl</artifactId> <version>2.2.3-1</version> <scope>test</scope> </dependency> <dependency> <groupId>ch.qos.logback</groupId> <artifactId>logback-classic</artifactId> <version>0.9.26</version> <scope>test</scope> </dependency> <dependency> <groupId>com.sun.grizzly</groupId> <artifactId>grizzly-servlet-webserver</artifactId> <version>1.9.18-i</version> <scope>test</scope> </dependency> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <version>4.10</version> <scope>test</scope> </dependency> <dependency> <groupId>com.sun.jersey</groupId> <artifactId>jersey-server</artifactId> <version>${jersey.version}</version> <scope>test</scope> </dependency> <dependency> <groupId>com.sun.jersey</groupId> <artifactId>jersey-bundle</artifactId> <version>${jersey.version}</version> <scope>test</scope> </dependency> <dependency> <groupId>io.netty</groupId> <artifactId>netty</artifactId> <version>${netty-version}</version> </dependency> </dependencies> <build> <defaultGoal>install</defaultGoal> <plugins> <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>animal-sniffer-maven-plugin</artifactId> <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> <extensions>true</extensions> <version>2.4.0</version> <configuration> <manifestLocation>META-INF</manifestLocation> <instructions> <Bundle-Vendor>Sonatype</Bundle-Vendor> <Import-Package> com.sun.jersey.*;resolution:=optional, * </Import-Package> <Export-Package> org.sonatype.spice.jersey.client.ahc.*;version="1.0.0" </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> <version>2.0.2</version> <configuration> <source>1.6</source> <target>1.6</target> <compilerVersion>1.6</compilerVersion> <maxmem>1024m</maxmem> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-jar-plugin</artifactId> <executions> <execution> <goals> <goal>test-jar</goal> </goals> </execution> </executions> </plugin> </plugins> </build> </project>
<dependency> <groupId>org.jfarcand</groupId> <artifactId>jersey-ahc-client</artifactId> <version>1.0.5</version> </dependency>
If you think the following jersey-ahc-client-1.0.5.jar downloaded from Maven central repository is inappropriate, such as containing malicious code/tools or violating the copyright, please email , thanks.
Download jersey-ahc-client-1.0.5.jar file