s3proxy/pom.xml

316 wiersze
9.5 KiB
XML
Czysty Zwykły widok Historia

2014-07-22 03:25:31 +00:00
<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">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>org.sonatype.oss</groupId>
<artifactId>oss-parent</artifactId>
<version>7</version>
</parent>
<groupId>org.gaul</groupId>
<artifactId>s3proxy</artifactId>
2015-01-22 21:58:33 +00:00
<version>1.4.0-SNAPSHOT</version>
2014-07-22 03:25:31 +00:00
<packaging>jar</packaging>
<name>S3 Proxy</name>
<url>https://github.com/andrewgaul/s3proxy</url>
2014-08-15 19:41:28 +00:00
<description>S3Proxy allows applications using the S3 API to access other object stores</description>
2014-07-22 03:25:31 +00:00
<licenses>
<license>
<name>The Apache Software License, Version 2.0</name>
<url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
<distribution>repo</distribution>
</license>
</licenses>
<scm>
<connection>scm:git:git@github.com:andrewgaul/s3proxy.git</connection>
<developerConnection>scm:git:git@github.com:andrewgaul/s3proxy.git</developerConnection>
<url>git@github.com:andrewgaul/s3proxy.git</url>
</scm>
<developers>
<developer>
<name>Andrew Gaul</name>
<id>gaul</id>
<email>andrew@gaul.org</email>
</developer>
</developers>
2015-01-05 21:34:27 +00:00
<distributionManagement>
<snapshotRepository>
<id>ossrh</id>
<url>https://oss.sonatype.org/content/repositories/snapshots</url>
</snapshotRepository>
</distributionManagement>
2015-01-22 21:54:33 +00:00
<profiles>
<profile>
<id>release</id>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-gpg-plugin</artifactId>
<version>1.5</version>
<executions>
<execution>
<id>sign-artifacts</id>
<phase>verify</phase>
<goals>
<goal>sign</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
</profile>
</profiles>
2014-07-22 03:25:31 +00:00
<build>
<plugins>
2014-08-18 18:06:42 +00:00
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-checkstyle-plugin</artifactId>
<version>2.14</version>
2015-01-05 01:26:47 +00:00
<executions>
<execution>
<id>check</id>
<phase>verify</phase>
<goals>
<goal>check</goal>
</goals>
</execution>
</executions>
2014-08-18 18:06:42 +00:00
<configuration>
<configLocation>src/main/resources/checkstyle.xml</configLocation>
<headerLocation>src/main/resources/copyright_header.txt</headerLocation>
<includeTestSourceDirectory>true</includeTestSourceDirectory>
<violationSeverity>warning</violationSeverity>
</configuration>
</plugin>
2014-07-22 03:25:31 +00:00
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.1</version>
<configuration>
<source>1.7</source>
<target>1.7</target>
<showDeprecation>true</showDeprecation>
<showWarnings>true</showWarnings>
<compilerArguments>
<Xlint />
</compilerArguments>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<version>2.9.1</version>
<executions>
<execution>
<id>attach-javadocs</id>
<goals>
<goal>jar</goal>
</goals>
</execution>
</executions>
</plugin>
2014-07-22 03:25:31 +00:00
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-assembly-plugin</artifactId>
<version>2.5.3</version>
2014-07-22 03:25:31 +00:00
<configuration>
<descriptors>
<descriptor>src/main/assembly/jar-with-dependencies.xml</descriptor>
</descriptors>
<archive>
<manifest>
<mainClass>org.gaul.s3proxy.S3Proxy</mainClass>
</manifest>
</archive>
2014-07-22 03:25:31 +00:00
</configuration>
<executions>
<execution>
<id>make-assembly</id>
2014-07-22 03:25:31 +00:00
<phase>package</phase>
<goals>
<goal>single</goal>
2014-07-22 03:25:31 +00:00
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
<version>2.2.1</version>
<executions>
<execution>
<id>attach-sources</id>
<goals>
<goal>jar-no-fork</goal>
</goals>
</execution>
</executions>
</plugin>
2014-07-22 03:25:31 +00:00
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<version>2.18.1</version>
2014-07-22 03:25:31 +00:00
<configuration>
<parallel>classes</parallel>
<threadCount>1</threadCount>
<argLine>-Xmx256m</argLine>
<redirectTestOutputToFile>true</redirectTestOutputToFile>
<forkedProcessTimeoutInSeconds>300</forkedProcessTimeoutInSeconds>
</configuration>
</plugin>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>findbugs-maven-plugin</artifactId>
<version>3.0.0</version>
<configuration>
<effort>Max</effort>
<omitVisitors>CrossSiteScripting</omitVisitors>
</configuration>
</plugin>
2014-07-22 03:25:31 +00:00
<plugin>
2014-08-18 18:06:42 +00:00
<groupId>org.skife.maven</groupId>
<artifactId>really-executable-jar-maven-plugin</artifactId>
<version>1.4.0</version>
2014-07-22 03:25:31 +00:00
<configuration>
2014-08-18 18:06:42 +00:00
<programFile>s3proxy</programFile>
2014-07-22 03:25:31 +00:00
</configuration>
2014-08-18 18:06:42 +00:00
<executions>
<execution>
<phase>package</phase>
<goals>
<goal>really-executable-jar</goal>
</goals>
</execution>
</executions>
2014-07-22 03:25:31 +00:00
</plugin>
2014-09-13 21:33:44 +00:00
<plugin>
<groupId>org.gaul</groupId>
<artifactId>modernizer-maven-plugin</artifactId>
<version>1.3.0</version>
2014-09-13 21:33:44 +00:00
<executions>
<execution>
<id>modernizer</id>
<phase>verify</phase>
<goals>
<goal>modernizer</goal>
</goals>
</execution>
</executions>
<configuration>
<javaVersion>1.7</javaVersion>
</configuration>
</plugin>
2015-01-05 21:34:27 +00:00
<plugin>
<groupId>org.sonatype.plugins</groupId>
<artifactId>nexus-staging-maven-plugin</artifactId>
<version>1.6.5</version>
2015-01-05 21:34:27 +00:00
<extensions>true</extensions>
<configuration>
<serverId>ossrh</serverId>
<nexusUrl>https://oss.sonatype.org/</nexusUrl>
<autoReleaseAfterClose>true</autoReleaseAfterClose>
</configuration>
</plugin>
2014-07-22 03:25:31 +00:00
</plugins>
</build>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<jclouds.version>2.0.0-SNAPSHOT</jclouds.version>
2014-07-22 03:25:31 +00:00
</properties>
<prerequisites>
<maven>3.0.5</maven>
</prerequisites>
<repositories>
<repository>
<id>apache-snapshots</id>
<url>https://repository.apache.org/content/repositories/snapshots</url>
<snapshots>
<enabled>true</enabled>
</snapshots>
</repository>
</repositories>
2014-07-22 03:25:31 +00:00
<dependencies>
<dependency>
<groupId>com.amazonaws</groupId>
<artifactId>aws-java-sdk-s3</artifactId>
<version>1.9.24</version>
<scope>test</scope>
</dependency>
<dependency>
2014-07-22 03:25:31 +00:00
<groupId>ch.qos.logback</groupId>
<artifactId>logback-classic</artifactId>
<version>1.1.2</version>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.12</version>
2014-07-22 03:25:31 +00:00
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.apache.jclouds</groupId>
<artifactId>jclouds-allblobstore</artifactId>
<version>${jclouds.version}</version>
</dependency>
<dependency>
<groupId>org.apache.jclouds.api</groupId>
<artifactId>filesystem</artifactId>
<version>${jclouds.version}</version>
</dependency>
<dependency>
<groupId>org.apache.jclouds.driver</groupId>
<artifactId>jclouds-slf4j</artifactId>
<version>${jclouds.version}</version>
</dependency>
2014-07-22 03:25:31 +00:00
<dependency>
<groupId>org.apache.jclouds.labs</groupId>
<artifactId>glacier</artifactId>
<version>${jclouds.version}</version>
</dependency>
<dependency>
<groupId>org.apache.jclouds.labs</groupId>
<artifactId>google-cloud-storage</artifactId>
<version>${jclouds.version}</version>
</dependency>
<dependency>
<groupId>org.apache.jclouds.labs</groupId>
<artifactId>rackspace-cloudfiles-uk</artifactId>
<version>${jclouds.version}</version>
</dependency>
<dependency>
<groupId>org.apache.jclouds.labs</groupId>
<artifactId>rackspace-cloudfiles-us</artifactId>
<version>${jclouds.version}</version>
</dependency>
2014-07-22 03:25:31 +00:00
<dependency>
<groupId>org.assertj</groupId>
<artifactId>assertj-core</artifactId>
<scope>test</scope>
<version>2.0.0</version>
2014-07-22 03:25:31 +00:00
</dependency>
<dependency>
<groupId>org.eclipse.jetty</groupId>
<artifactId>jetty-servlet</artifactId>
<version>9.2.10.v20150310</version>
2014-07-22 03:25:31 +00:00
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-api</artifactId>
<version>1.7.10</version>
2014-07-22 03:25:31 +00:00
</dependency>
</dependencies>
</project>