s3-simple-appengine
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>com.elevenware</groupId>
<artifactId>s3-simple-appengine</artifactId>
<version>1.0</version>
</dependency><?xml version="1.0" encoding="UTF-8" standalone="no"?>
<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>com.elevenware</groupId>
<artifactId>s3-simple-appengine</artifactId>
<packaging>jar</packaging>
<version>1.0</version>
<name>S3 Simple AppEngine</name>
<url>https://github.com/georgecodes/s3-simple-appengine</url>
<organization>
<name>Elevenware Limited</name>
</organization>
<description>An S3 library that works from inside Google App engine</description>
<licenses>
<license>
<name>Apache License, Version 2.0</name>
<url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
<distribution>repo</distribution>
<comments>A business-friendly OSS license</comments>
</license>
</licenses>
<scm>
<connection>scm:git:github.com/georgecodes/s3-simple-appengine.git</connection>
<developerConnection>scm:git:github.com/georgecodes/s3-simple-appengine.git</developerConnection>
<tag>HEAD</tag>
<url>https://github.com/georgecodes/s3-simple-appengine.git</url>
</scm>
<developers>
<developer>
<id>handstandsam</id>
<name>Sam Edwards</name>
<email>sam@handstandtech.com</email>
<url>http://handstandtech.com</url>
<organization>Handstand Technologies, LLC</organization>
<organizationUrl>http://handstandtech.com</organizationUrl>
</developer>
<developer>
<id>georgemc</id>
<name>George McIntosh</name>
<email>george@elevenware.com</email>
<url>http://elevenware.com</url>
<organization>Elevenware Limited</organization>
</developer>
</developers>
<issueManagement>
<system>GitHub</system>
<url>https://github.com/georgecodes/s3-simple-appengine/issues</url>
</issueManagement>
<properties>
<!-- Project properties -->
<target.jdk>1.7</target.jdk>
<project.encoding>UTF-8</project.encoding>
<webapp.directory>${project.build.directory}/${project.build.finalName}</webapp.directory>
<!-- Version Properties -->
<maven-compiler-plugin.version>2.3.2</maven-compiler-plugin.version>
<maven-javadoc-plugin.version>2.7</maven-javadoc-plugin.version>
<maven-resources-plugin.version>2.5</maven-resources-plugin.version>
<maven-source-plugin.version>2.1.2</maven-source-plugin.version>
<slf4j.version>1.6.1</slf4j.version>
<json.version>20090211</json.version>
</properties>
<dependencies>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-api</artifactId>
<version>${slf4j.version}</version>
</dependency>
<dependency>
<groupId>org.json</groupId>
<artifactId>json</artifactId>
<version>${json.version}</version>
</dependency>
</dependencies>
<distributionManagement>
<snapshotRepository>
<id>ossrh</id>
<url>https://oss.sonatype.org/content/repositories/snapshots</url>
</snapshotRepository>
</distributionManagement>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<version>${maven-javadoc-plugin.version}</version>
<configuration>
<encoding>${project.encoding}</encoding>
</configuration>
<executions>
<execution>
<id>attach-javadocs</id>
<goals>
<goal>jar</goal>
</goals>
<configuration>
<sourcepath>${project.build.sourceDirectory}</sourcepath>
</configuration>
</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>
<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>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<configuration>
<source>1.7</source>
<target>1.7</target>
</configuration>
</plugin>
<plugin>
<groupId>org.sonatype.plugins</groupId>
<artifactId>nexus-staging-maven-plugin</artifactId>
<version>1.6.3</version>
<extensions>true</extensions>
<configuration>
<serverId>ossrh</serverId>
<nexusUrl>https://oss.sonatype.org/</nexusUrl>
<autoReleaseAfterClose>true</autoReleaseAfterClose>
</configuration>
</plugin>
</plugins>
</build>
</project>