| <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.aws</groupId> | |
| <artifactId>s3-maven-wagon</artifactId> | |
| <packaging>jar</packaging> | |
| <name>Amazon S3/Google Developer Storage Maven Wagon Support</name> | |
| <version>3.3-SNAPSHOT</version> | |
| <description>Standard Maven wagon support for s3:// urls (forked from the Spring version)</description> | |
| <url>https://github.com/elek/s3-maven-wagon/admin</url> | |
| <inceptionYear>2007</inceptionYear> | |
| <parent> | |
| <groupId>org.sonatype.oss</groupId> | |
| <artifactId>oss-parent</artifactId> | |
| <version>5</version> | |
| </parent> | |
| <developers> | |
| <developer> | |
| <name>Spring team</name> | |
| <organization>Spring source</organization> | |
| <roles> | |
| <role>author</role> | |
| </roles> | |
| </developer> | |
| <developer> | |
| <name>Elek, Márton</name> | |
| <roles> | |
| <role>small modifications on this fork</role> | |
| </roles> | |
| </developer> | |
| </developers> | |
| <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@github.com:elek/s3-maven-wagon.git</connection> | |
| <url>scm:git:git@github.com:elek/s3-maven-wagon.git</url> | |
| <developerConnection>scm:git:git@github.com:elek/s3-maven-wagon.git</developerConnection> | |
| </scm> | |
| <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> | |
| <profiles> | |
| <profile> | |
| <id>release</id> | |
| <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> | |
| </profiles> | |
| <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> |