| <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> | |
| <groupId>net.anzix</groupId> | |
| <artifactId>org.springframework.build.aws.maven</artifactId> | |
| <packaging>jar</packaging> | |
| <name>Amazon S3/Google Developer Storage Maven Wagon Support</name> | |
| <version>3.1.2-SNAPSHOT</version> | |
| <description>Standard Maven wagon support for s3:// urls</description> | |
| <url>http://www.springframework.org</url> | |
| <inceptionYear>2007</inceptionYear> | |
| <licenses> | |
| <license> | |
| <name>Apache License, Version 2.0</name> | |
| <url>http://www.apache.org/licenses/LICENSE-2.0</url> | |
| <distribution>repo</distribution> | |
| </license> | |
| </licenses> | |
| <scm> | |
| <connection>scm:git:git://git.springsource.org/spring-build/aws-maven.git</connection> | |
| </scm> | |
| <organization> | |
| <name>Spring Framework</name> | |
| <url>http://www.springframework.org</url> | |
| </organization> | |
| <build> | |
| <extensions> | |
| <extension> | |
| <groupId>org.springframework.build.aws</groupId> | |
| <artifactId>org.springframework.build.aws.maven</artifactId> | |
| <version>2.0.0.RELEASE</version> | |
| </extension> | |
| </extensions> | |
| <plugins> | |
| <plugin> | |
| <groupId>org.apache.maven.plugins</groupId> | |
| <artifactId>maven-compiler-plugin</artifactId> | |
| <configuration> | |
| <source>1.5</source> | |
| <target>1.5</target> | |
| </configuration> | |
| </plugin> | |
| </plugins> | |
| </build> | |
| <dependencies> | |
| <dependency> | |
| <groupId>commons-httpclient</groupId> | |
| <artifactId>commons-httpclient</artifactId> | |
| <version>3.1</version> | |
| <scope>runtime</scope> | |
| </dependency> | |
| <dependency> | |
| <groupId>net.java.dev.jets3t</groupId> | |
| <artifactId>jets3t</artifactId> | |
| <version>0.8.0</version> | |
| </dependency> | |
| <dependency> | |
| <groupId>org.apache.maven.wagon</groupId> | |
| <artifactId>wagon-provider-api</artifactId> | |
| <version>1.0-beta-6</version> | |
| <scope>provided</scope> | |
| </dependency> | |
| </dependencies> | |
| </project> |