mirror of https://github.com/apache/jclouds.git
315 lines
9.6 KiB
XML
315 lines
9.6 KiB
XML
<?xml version="1.0" encoding="UTF-8"?>
|
|
<!--
|
|
|
|
|
|
Copyright (C) 2010 Cloud Conscious, LLC. <info@cloudconscious.com>
|
|
|
|
====================================================================
|
|
Licensed under the Apache 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.apache.org/licenses/LICENSE-2.0 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>
|
|
<groupId>org.jclouds.demos</groupId>
|
|
<artifactId>gae-replicator</artifactId>
|
|
<version>1.0-SNAPSHOT</version>
|
|
<packaging>war</packaging>
|
|
<name>JClouds example to replicate the contents of a container</name>
|
|
<description>JClouds example to replicate the contents of a container</description>
|
|
|
|
<properties>
|
|
<!--
|
|
note you must set the property ${appengine.home} to a valid
|
|
extraction of appengine-java-sdk
|
|
-->
|
|
<appengine.home>YOUR_APPENGINE_HOME</appengine.home>
|
|
<appengine.applicationid>jclouds-replicate</appengine.applicationid>
|
|
<devappserver.address>localhost</devappserver.address>
|
|
<devappserver.port>8088</devappserver.port>
|
|
<jclouds.replicate.source>googlestorage</jclouds.replicate.source>
|
|
<jclouds.replicate.destinations>cloudfiles-us,aws-s3,azureblob</jclouds.replicate.destinations>
|
|
<jclouds.replicate.container>jclouds-replicate</jclouds.replicate.container>
|
|
</properties>
|
|
|
|
<dependencies>
|
|
<dependency>
|
|
<groupId>${project.groupId}</groupId>
|
|
<artifactId>jclouds-allblobstore</artifactId>
|
|
<version>${project.version}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>${project.groupId}</groupId>
|
|
<artifactId>jclouds-blobstore</artifactId>
|
|
<version>${project.version}</version>
|
|
<type>test-jar</type>
|
|
<scope>test</scope>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>${project.groupId}</groupId>
|
|
<artifactId>jclouds-core</artifactId>
|
|
<version>${project.version}</version>
|
|
<type>test-jar</type>
|
|
<scope>test</scope>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.jclouds.driver</groupId>
|
|
<artifactId>jclouds-log4j</artifactId>
|
|
<version>${project.version}</version>
|
|
<scope>test</scope>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>log4j</groupId>
|
|
<artifactId>log4j</artifactId>
|
|
<version>1.2.16</version>
|
|
<scope>test</scope>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.jclouds.driver</groupId>
|
|
<artifactId>gae</artifactId>
|
|
<version>${project.version}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.google.inject.extensions</groupId>
|
|
<artifactId>guice-servlet</artifactId>
|
|
<version>3.0</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>displaytag</groupId>
|
|
<artifactId>displaytag</artifactId>
|
|
<version>1.2</version>
|
|
<exclusions>
|
|
<exclusion>
|
|
<groupId>org.slf4j</groupId>
|
|
<artifactId>slf4j-log4j12</artifactId>
|
|
</exclusion>
|
|
</exclusions>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.slf4j</groupId>
|
|
<artifactId>slf4j-jdk14</artifactId>
|
|
<version>1.5.6</version>
|
|
</dependency>
|
|
<dependency>
|
|
<artifactId>standard</artifactId>
|
|
<groupId>taglibs</groupId>
|
|
<version>1.1.2</version>
|
|
<scope>runtime</scope>
|
|
</dependency>
|
|
<dependency>
|
|
<artifactId>jstl</artifactId>
|
|
<groupId>javax.servlet</groupId>
|
|
<version>1.1.2</version>
|
|
</dependency>
|
|
|
|
<!-- Google App Engine API -->
|
|
<dependency>
|
|
<groupId>com.google.appengine</groupId>
|
|
<artifactId>appengine-api-1.0-sdk</artifactId>
|
|
<version>1.4.2</version>
|
|
</dependency>
|
|
|
|
<!-- Google App Engine Runtime Dependencies -->
|
|
<dependency>
|
|
<groupId>org.apache.geronimo.specs</groupId>
|
|
<artifactId>geronimo-jta_1.1_spec</artifactId>
|
|
<version>1.1.1</version>
|
|
<scope>runtime</scope>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>org.apache.geronimo.specs</groupId>
|
|
<artifactId>geronimo-jpa_3.0_spec</artifactId>
|
|
<version>1.1.1</version>
|
|
<scope>runtime</scope>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>com.google.appengine.orm</groupId>
|
|
<artifactId>jdo2-api</artifactId>
|
|
<version>2.3-eb</version>
|
|
<scope>runtime</scope>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>org.datanucleus</groupId>
|
|
<artifactId>datanucleus-core</artifactId>
|
|
<version>1.1.5</version>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>com.google.appengine.orm</groupId>
|
|
<artifactId>datanucleus-appengine</artifactId>
|
|
<version>1.0.8</version>
|
|
<scope>runtime</scope>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>org.datanucleus</groupId>
|
|
<artifactId>datanucleus-jpa</artifactId>
|
|
<version>1.1.5</version>
|
|
<scope>runtime</scope>
|
|
</dependency>
|
|
|
|
<!-- App Engine Runtime Dependencies-->
|
|
<dependency>
|
|
<groupId>com.google.appengine</groupId>
|
|
<artifactId>appengine-tools-sdk</artifactId>
|
|
<version>1.4.2</version>
|
|
</dependency>
|
|
</dependencies>
|
|
<build>
|
|
<finalName>${project.artifactId}</finalName>
|
|
<plugins>
|
|
<plugin>
|
|
<artifactId>maven-war-plugin</artifactId>
|
|
<configuration>
|
|
<webResources>
|
|
<resource>
|
|
<directory>src/main/appengine</directory>
|
|
<targetPath>WEB-INF/</targetPath>
|
|
<filtering>true</filtering>
|
|
</resource>
|
|
</webResources>
|
|
</configuration>
|
|
</plugin>
|
|
<plugin>
|
|
<artifactId>maven-surefire-plugin</artifactId>
|
|
<executions>
|
|
<execution>
|
|
<id>integration</id>
|
|
<phase>integration-test</phase>
|
|
<goals>
|
|
<goal>test</goal>
|
|
</goals>
|
|
<configuration>
|
|
<systemProperties>
|
|
<property>
|
|
<name>appengine.home</name>
|
|
<value>${appengine.home}</value>
|
|
</property>
|
|
<property>
|
|
<name>devappserver.address</name>
|
|
<value>${devappserver.address}</value>
|
|
</property>
|
|
<property>
|
|
<name>devappserver.port</name>
|
|
<value>${devappserver.port}</value>
|
|
</property>
|
|
<property>
|
|
<name>warfile</name>
|
|
<value>${project.build.directory}/${project.artifactId}</value>
|
|
</property>
|
|
</systemProperties>
|
|
<additionalClasspathElements>
|
|
<additionalClasspathElement>${appengine.home}/lib/appengine-tools-api.jar</additionalClasspathElement>
|
|
</additionalClasspathElements>
|
|
<environmentVariables>
|
|
<DEBUG>true</DEBUG>
|
|
<SDK_BIN>${appengine.home}/bin</SDK_BIN>
|
|
<SDK_LIB>${appengine.home}/lib</SDK_LIB>
|
|
<SDK_CONFIG>${appengine.home}/config/sdk</SDK_CONFIG>
|
|
</environmentVariables>
|
|
</configuration>
|
|
</execution>
|
|
</executions>
|
|
</plugin>
|
|
</plugins>
|
|
</build>
|
|
|
|
<profiles>
|
|
<profile>
|
|
<id>live</id>
|
|
<build>
|
|
<plugins>
|
|
<plugin>
|
|
<artifactId>maven-surefire-plugin</artifactId>
|
|
<executions>
|
|
<execution>
|
|
<id>integration</id>
|
|
<phase>integration-test</phase>
|
|
<goals>
|
|
<goal>test</goal>
|
|
</goals>
|
|
<configuration>
|
|
<systemProperties>
|
|
<property>
|
|
<name>test.azureblob.identity</name>
|
|
<value>${test.azureblob.identity}</value>
|
|
</property>
|
|
<property>
|
|
<name>test.azureblob.credential</name>
|
|
<value>${test.azureblob.credential}</value>
|
|
</property>
|
|
<property>
|
|
<name>test.cloudfiles-us.identity</name>
|
|
<value>${test.cloudfiles-us.identity}</value>
|
|
</property>
|
|
<property>
|
|
<name>test.cloudfiles-us.credential</name>
|
|
<value>${test.cloudfiles-us.credential}</value>
|
|
</property>
|
|
<property>
|
|
<name>test.aws-s3.identity</name>
|
|
<value>${test.aws-s3.identity}</value>
|
|
</property>
|
|
<property>
|
|
<name>test.aws-s3.credential</name>
|
|
<value>${test.aws-s3.credential}</value>
|
|
</property>
|
|
<property>
|
|
<name>test.googlestorage.identity</name>
|
|
<value>${test.googlestorage.identity}</value>
|
|
</property>
|
|
<property>
|
|
<name>test.googlestorage.credential</name>
|
|
<value>${test.googlestorage.credential}</value>
|
|
</property>
|
|
<property>
|
|
<name>appengine.home</name>
|
|
<value>${appengine.home}</value>
|
|
</property>
|
|
<property>
|
|
<name>devappserver.address</name>
|
|
<value>${devappserver.address}</value>
|
|
</property>
|
|
<property>
|
|
<name>devappserver.port</name>
|
|
<value>${devappserver.port}</value>
|
|
</property>
|
|
<property>
|
|
<name>jclouds.replicate.source</name>
|
|
<value>${jclouds.replicate.source}</value>
|
|
</property>
|
|
<property>
|
|
<name>jclouds.replicate.destinations</name>
|
|
<value>${jclouds.replicate.destinations}</value>
|
|
</property>
|
|
<property>
|
|
<name>jclouds.replicate.container</name>
|
|
<value>${jclouds.replicate.container}</value>
|
|
</property>
|
|
<property>
|
|
<name>warfile</name>
|
|
<value>${project.build.directory}/${project.artifactId}</value>
|
|
</property>
|
|
</systemProperties>
|
|
</configuration>
|
|
</execution>
|
|
</executions>
|
|
</plugin>
|
|
</plugins>
|
|
</build>
|
|
</profile>
|
|
</profiles>
|
|
</project>
|