Wagon :: AHC.
A wagon provider for HTTP transfers based on the async-http-client..
Here is the list of declaration for wagon-ahc. If you use Maven you can use the following code to add the dependency for this POM file.
<dependency> <groupId>org.sonatype.maven</groupId> <artifactId>wagon-ahc</artifactId> <version>1.2.1</version> </dependency>
If you think this Maven repository POM file listing for wagon-ahc is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
Name:Eclipse Public License, Version 1.0
URL: http://www.eclipse.org/legal/epl-v10.html.
The wagon-ahc-1.2.1 has 8 dependencies.The most popular ones are listed in the following table along with their categories and number of artifacts depending on them.
Category | Artifact | Depended By Count |
---|---|---|
Build | wagon-provider-api 1.0 Maven Wagon API that defines the contract between different Wagon implementations | 7 |
JUnit | junit 3.8.2 JUnit is a regression testing framework written by Erich Gamma and Kent Beck. It is used by the developer who implements unit tests in Java. | 555 |
Inversion of Control | plexus-container-default 1.5.5 The Plexus IoC container API and its default implementation. | 11 |
XML | plexus-utils 2.0.5 A collection of various utility classes to ease working with strings, files, command lines, XML and more. | 34 |
Network | easymock 2.5.2 EasyMock provides an easy way to create Mock Objects for interfaces by generating them on the fly using Java's proxy mechanism | 26 |
Log | logback-classic 0.9.28 Logback: the reliable, generic, fast and flexible logging library for Java. | 22 |
The following plugins are used in the wagon-ahc-1.2.1.jar
The following packages are defined in the wagon-ahc-1.2.1.jar
org.sonatype.maven.wagon
Here is the content of the POM file.
<?xml version="1.0" encoding="UTF-8"?> <!-- Copyright (c) 2010-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 which accompanies this distribution, and is available at http://www.eclipse.org/legal/epl-v10.html --> <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/maven-v4_0_0.xsd"> <modelVersion>4.0.0</modelVersion> <parent> <groupId>org.sonatype.forge</groupId> <artifactId>forge-parent</artifactId> <version>6</version> </parent> <groupId>org.sonatype.maven</groupId> <artifactId>wagon-ahc</artifactId> <version>1.2.1</version> <name>Wagon :: AHC</name> <description> A wagon provider for HTTP transfers based on the async-http-client. </description> <inceptionYear>2010</inceptionYear> <organization> <name>Sonatype, Inc.</name> <url>http://www.sonatype.com/</url> </organization> <scm> <connection>scm:git:git@github.com:sonatype/wagon-ahc.git</connection> <developerConnection>scm:git:git@github.com:sonatype/wagon-ahc.git</developerConnection> <url>http://github.com/sonatype/wagon-ahc</url> </scm> <licenses> <license> <name>Eclipse Public License, Version 1.0</name> <url>http://www.eclipse.org/legal/epl-v10.html</url> <distribution>repo</distribution> </license> </licenses> <dependencies> <dependency> <groupId>com.ning</groupId> <artifactId>async-http-client</artifactId> <version>1.6.5</version> </dependency> <dependency> <groupId>org.apache.maven.wagon</groupId> <artifactId>wagon-provider-api</artifactId> <version>1.0</version> </dependency> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <version>3.8.2</version> <scope>test</scope> </dependency> <dependency> <groupId>org.codehaus.plexus</groupId> <artifactId>plexus-container-default</artifactId> <version>1.5.5</version> <scope>test</scope> </dependency> <dependency> <groupId>org.codehaus.plexus</groupId> <artifactId>plexus-utils</artifactId> <version>2.0.5</version> </dependency> <dependency> <groupId>org.easymock</groupId> <artifactId>easymock</artifactId> <version>2.5.2</version> <scope>test</scope> </dependency> <dependency> <groupId>org.apache.maven.wagon</groupId> <artifactId>wagon-provider-test</artifactId> <version>1.0</version> <scope>test</scope> <exclusions> <exclusion> <groupId>easymock</groupId> <artifactId>easymock</artifactId> </exclusion> </exclusions> </dependency> <dependency> <groupId>ch.qos.logback</groupId> <artifactId>logback-classic</artifactId> <version>0.9.28</version> <scope>test</scope> </dependency> </dependencies> <build> <pluginManagement> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-resources-plugin</artifactId> <version>2.4.3</version> </plugin> </plugins> </pluginManagement> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-surefire-plugin</artifactId> <version>2.7.2</version> <configuration> <argLine>-Xmx32m</argLine> <redirectTestOutputToFile>${surefire.redirectTestOutputToFile}</redirectTestOutputToFile> </configuration> </plugin> <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> </plugins> </build> <properties> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> <forgeReleaseUrl>https://repository.sonatype.org/service/local/staging/deploy/maven2</forgeReleaseUrl> <surefire.redirectTestOutputToFile>true</surefire.redirectTestOutputToFile> </properties> </project>