2009-05-20 17:25:11 -04:00
|
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
2009-11-11 02:38:47 -05:00
|
|
|
<!--
|
2009-05-20 17:25:11 -04:00
|
|
|
|
2009-11-11 02:38:47 -05:00
|
|
|
Copyright (C) 2009 Global Cloud Specialists, Inc.
|
|
|
|
<info@globalcloudspecialists.com>
|
2009-05-20 17:25:11 -04:00
|
|
|
|
2009-11-11 02:38:47 -05:00
|
|
|
====================================================================
|
|
|
|
Licensed to the Apache Software Foundation (ASF) under one or
|
|
|
|
more contributor license agreements. See the NOTICE file
|
|
|
|
distributed with this work for additional information regarding
|
|
|
|
copyright ownership. The ASF licenses this file to you 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
|
2009-05-20 17:25:11 -04:00
|
|
|
|
2009-11-11 02:38:47 -05:00
|
|
|
http://www.apache.org/licenses/LICENSE-2.0.html 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.
|
|
|
|
====================================================================
|
|
|
|
-->
|
2009-05-20 17:25:11 -04:00
|
|
|
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
2009-11-11 02:38:47 -05:00
|
|
|
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
|
|
|
|
<parent>
|
|
|
|
<artifactId>jclouds-aws-demos-project</artifactId>
|
|
|
|
<groupId>org.jclouds</groupId>
|
|
|
|
<version>1.0-SNAPSHOT</version>
|
|
|
|
<relativePath>../pom.xml</relativePath>
|
|
|
|
</parent>
|
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
<artifactId>jclouds-gae-s3-example</artifactId>
|
|
|
|
<packaging>war</packaging>
|
|
|
|
<name>JClouds Sample for Google App Engine</name>
|
|
|
|
<description>JClouds Sample for Google App Engine</description>
|
2009-05-20 17:25:11 -04:00
|
|
|
|
2009-11-11 02:38:47 -05:00
|
|
|
<properties>
|
|
|
|
<!--
|
|
|
|
note you must set the property ${appengine.home} to a valid
|
|
|
|
extraction of appengine-java-sdk
|
|
|
|
-->
|
2009-12-18 12:21:23 -05:00
|
|
|
<appengine.home>/Users/adriancole/Downloads/appengine-java-sdk-1.3.0</appengine.home>
|
2009-11-11 02:38:47 -05:00
|
|
|
<appengine.applicationid>jclouds-s3-example</appengine.applicationid>
|
|
|
|
<devappserver.address>localhost</devappserver.address>
|
|
|
|
<devappserver.port>8088</devappserver.port>
|
|
|
|
</properties>
|
2009-05-20 17:25:11 -04:00
|
|
|
|
2009-11-11 02:38:47 -05:00
|
|
|
<dependencies>
|
2009-12-12 21:24:30 -05:00
|
|
|
<dependency>
|
|
|
|
<groupId>${project.groupId}</groupId>
|
|
|
|
<artifactId>jclouds-blobstore</artifactId>
|
|
|
|
<version>${project.version}</version>
|
|
|
|
</dependency>
|
2009-11-11 02:38:47 -05:00
|
|
|
<dependency>
|
|
|
|
<groupId>${project.groupId}</groupId>
|
|
|
|
<artifactId>jclouds-azure</artifactId>
|
|
|
|
<version>${project.version}</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>${project.groupId}</groupId>
|
2009-11-11 03:10:52 -05:00
|
|
|
<artifactId>jclouds-rackspace</artifactId>
|
2009-11-11 02:38:47 -05:00
|
|
|
<version>${project.version}</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>${project.groupId}</groupId>
|
|
|
|
<artifactId>jclouds-gae</artifactId>
|
|
|
|
<version>${project.version}</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.google.code.guice</groupId>
|
|
|
|
<artifactId>guice-servlet</artifactId>
|
2009-11-17 16:20:38 -05:00
|
|
|
<version>2.1-r1128</version>
|
2009-11-11 02:38:47 -05:00
|
|
|
</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>
|
|
|
|
<type>jar</type>
|
|
|
|
<scope>runtime</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<artifactId>jstl</artifactId>
|
|
|
|
<groupId>javax.servlet</groupId>
|
|
|
|
<version>1.1.2</version>
|
|
|
|
<type>jar</type>
|
|
|
|
<scope>compile</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.geronimo.specs</groupId>
|
|
|
|
<artifactId>geronimo-el_1.0_spec</artifactId>
|
|
|
|
<version>1.0.1</version>
|
|
|
|
<scope>compile</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.geronimo.specs</groupId>
|
|
|
|
<artifactId>geronimo-jsp_2.1_spec</artifactId>
|
|
|
|
<version>1.0.1</version>
|
|
|
|
<scope>provided</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.geronimo.specs</groupId>
|
|
|
|
<artifactId>geronimo-servlet_2.5_spec</artifactId>
|
|
|
|
<version>1.2</version>
|
|
|
|
<scope>provided</scope>
|
|
|
|
</dependency>
|
2009-05-20 17:25:11 -04:00
|
|
|
|
2009-11-11 02:38:47 -05:00
|
|
|
<dependency>
|
|
|
|
<groupId>com.google.appengine</groupId>
|
|
|
|
<artifactId>appengine-tools-api</artifactId>
|
2009-12-18 12:21:23 -05:00
|
|
|
<version>1.3.0</version>
|
2009-11-11 02:38:47 -05:00
|
|
|
<scope>system</scope>
|
|
|
|
<systemPath>${appengine.home}/lib/appengine-tools-api.jar</systemPath>
|
|
|
|
</dependency>
|
2009-05-20 17:25:11 -04:00
|
|
|
|
2009-11-11 02:38:47 -05:00
|
|
|
</dependencies>
|
|
|
|
<build>
|
|
|
|
<finalName>${project.artifactId}</finalName>
|
|
|
|
<plugins>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<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>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<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
|
2009-10-31 05:05:19 -04:00
|
|
|
</additionalClasspathElement>
|
2009-11-11 02:38:47 -05:00
|
|
|
</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>
|
2009-05-21 12:08:31 -04:00
|
|
|
|
2009-11-11 02:38:47 -05:00
|
|
|
<profiles>
|
|
|
|
<profile>
|
|
|
|
<id>live</id>
|
|
|
|
<build>
|
|
|
|
<plugins>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-surefire-plugin</artifactId>
|
|
|
|
<executions>
|
|
|
|
<execution>
|
|
|
|
<id>integration</id>
|
|
|
|
<phase>integration-test</phase>
|
|
|
|
<goals>
|
|
|
|
<goal>test</goal>
|
|
|
|
</goals>
|
|
|
|
<configuration>
|
|
|
|
<systemProperties>
|
|
|
|
<property>
|
|
|
|
<name>jclouds.azure.storage.account</name>
|
|
|
|
<value>${jclouds.azure.storage.account}</value>
|
|
|
|
</property>
|
|
|
|
<property>
|
|
|
|
<name>jclouds.azure.storage.key</name>
|
|
|
|
<value>${jclouds.azure.storage.key}</value>
|
|
|
|
</property>
|
|
|
|
<property>
|
|
|
|
<name>jclouds.rackspace.user</name>
|
|
|
|
<value>${jclouds.rackspace.user}</value>
|
|
|
|
</property>
|
|
|
|
<property>
|
|
|
|
<name>jclouds.rackspace.key</name>
|
|
|
|
<value>${jclouds.rackspace.key}</value>
|
|
|
|
</property>
|
|
|
|
<property>
|
|
|
|
<name>jclouds.aws.accesskeyid</name>
|
|
|
|
<value>${jclouds.aws.accesskeyid}</value>
|
|
|
|
</property>
|
|
|
|
<property>
|
|
|
|
<name>jclouds.aws.secretaccesskey</name>
|
|
|
|
<value>${jclouds.aws.secretaccesskey}</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>warfile</name>
|
|
|
|
<value>${project.build.directory}/${project.artifactId}</value>
|
|
|
|
</property>
|
|
|
|
</systemProperties>
|
|
|
|
</configuration>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
|
|
|
</plugin>
|
|
|
|
</plugins>
|
|
|
|
</build>
|
|
|
|
</profile>
|
|
|
|
</profiles>
|
2009-05-20 17:25:11 -04:00
|
|
|
</project>
|