Maven S3 Wagon.
This project is an implementation of a multi-threaded Wagon provider for accessing Amazon's Simple Storage Service (S3). It enables Maven to download files from and deploy files to S3. It draws heavily from code developed by Ben Hale at SpringSource.
Here is the list of declaration for maven-s3-wagon. If you use Maven you can use the following code to add the dependency for this POM file.
<dependency> <groupId>org.kuali.maven.wagons</groupId> <artifactId>maven-s3-wagon</artifactId> <version>1.1.14</version> </dependency>
If you think this Maven repository POM file listing for maven-s3-wagon is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
The maven-s3-wagon-1.1.14 has 10 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 |
---|---|---|
JUnit | junit 4.10 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. | 1957 |
JSON | jackson-mapper-asl 1.9.6 Data Mapper package is a high-performance data binding package built on Jackson JSON processor | 6 |
Http | httpclient 4.2-beta1 HttpComponents Client (base module) | 6 |
File | commons-io 2.3 The Commons IO library contains utility classes, stream implementations, file filters, file comparators, endian transformation classes, and much more. | 31 |
Data Structure | commons-lang 2.6 Commons Lang, a package of Java utility classes for the classes that are in java.lang's hierarchy, or are considered to be so standard as to justify existence in java.lang. | 407 |
Log | slf4j-log4j12 1.6.4 The slf4j log4j-12 binding | 96 |
Log | jcl-over-slf4j 1.6.4 JCL 1.1.1 implementation over SLF4J | 30 |
The following plugins are used in the maven-s3-wagon-1.1.14.jar
The following packages are defined in the maven-s3-wagon-1.1.14.jar
org.kuali.maven.wagon
Here is the content of the POM file.
<!-- Copyright 2010-2012 The Kuali Foundation Licensed under the Educational Community License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.opensource.org/licenses/ecl2.php Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. --> <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.kuali.pom</groupId> <artifactId>kuali-common</artifactId> <version>1.3.9</version> </parent> <groupId>org.kuali.maven.wagons</groupId> <artifactId>maven-s3-wagon</artifactId> <version>1.1.14</version> <name>Maven S3 Wagon</name> <inceptionYear>2010</inceptionYear> <description> This project is an implementation of a multi-threaded Wagon provider for accessing Amazon's Simple Storage Service (S3). It enables Maven to download files from and deploy files to S3. It draws heavily from code developed by Ben Hale at SpringSource </description> <url>http://${kuali.site.hostname}/maven/wagons/${project.artifactId}/${project.version}/</url> <properties> <kuali.compile.source>1.5</kuali.compile.source> <kuali.compile.target>1.5</kuali.compile.target> <slf4j.version>1.6.4</slf4j.version> <aws.version>1.3.8</aws.version> </properties> <profiles> <profile> <id>kuali-release</id> <build> <plugins> <plugin> <groupId>com.google.code.maven-svn-revision-number-plugin</groupId> <artifactId>maven-svn-revision-number-plugin</artifactId> <executions> <execution> <id>generate-svn-info</id> <phase>none</phase> </execution> </executions> </plugin> </plugins> </build> </profile> </profiles> <build> <plugins> <plugin> <groupId>com.mycila.maven-license-plugin</groupId> <artifactId>maven-license-plugin</artifactId> <configuration> <aggregate>true</aggregate> <excludes> <exclude>**/*.md</exclude> <exclude>**/mime.type</exclude> <exclude>**/.gitignore</exclude> </excludes> </configuration> </plugin> </plugins> </build> <dependencies> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <scope>test</scope> <version>4.10</version> </dependency> <dependency> <groupId>com.amazonaws</groupId> <artifactId>aws-java-sdk</artifactId> <version>${aws.version}</version> <exclusions> <exclusion> <groupId>commons-logging</groupId> <artifactId>commons-logging</artifactId> </exclusion> <exclusion> <groupId>org.apache.httpcomponents</groupId> <artifactId>httpclient</artifactId> </exclusion> <exclusion> <groupId>org.codehaus.jackson</groupId> <artifactId>jackson-mapper-asl</artifactId> </exclusion> <exclusion> <groupId>org.codehaus.jackson</groupId> <artifactId>jackson-core-asl</artifactId> </exclusion> <exclusion> <groupId>commons-codec</groupId> <artifactId>commons-codec</artifactId> </exclusion> </exclusions> </dependency> <dependency> <groupId>org.codehaus.jackson</groupId> <artifactId>jackson-mapper-asl</artifactId> <version>1.9.6</version> </dependency> <dependency> <groupId>org.apache.httpcomponents</groupId> <artifactId>httpclient</artifactId> <version>4.2-beta1</version> <exclusions> <exclusion> <groupId>commons-logging</groupId> <artifactId>commons-logging</artifactId> </exclusion> </exclusions> </dependency> <dependency> <groupId>org.apache.maven.wagon</groupId> <artifactId>wagon-provider-api</artifactId> <version>2.2</version> </dependency> <dependency> <groupId>commons-io</groupId> <artifactId>commons-io</artifactId> <version>2.3</version> </dependency> <dependency> <groupId>commons-lang</groupId> <artifactId>commons-lang</artifactId> <version>2.6</version> </dependency> <dependency> <groupId>org.kuali.common</groupId> <artifactId>kuali-threads</artifactId> <version>1.0.9</version> </dependency> <dependency> <groupId>org.slf4j</groupId> <artifactId>slf4j-log4j12</artifactId> <version>${slf4j.version}</version> </dependency> <dependency> <groupId>org.slf4j</groupId> <artifactId>jcl-over-slf4j</artifactId> <version>${slf4j.version}</version> </dependency> </dependencies> <scm> <connection>scm:git:git@github.com:jcaddel/maven-s3-wagon.git</connection> <developerConnection>scm:git:git@github.com:jcaddel/maven-s3-wagon.git</developerConnection> <url>https://github.com/jcaddel/maven-s3-wagon</url> </scm> </project>