2009-05-20 17:25:11 -04:00
|
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
2009-12-24 14:50:37 -05:00
|
|
|
<!--
|
2009-05-20 17:25:11 -04:00
|
|
|
|
|
|
|
|
2010-08-12 19:04:26 -04:00
|
|
|
Copyright (C) 2010 Cloud Conscious, LLC. <info@cloudconscious.com>
|
2009-05-20 17:25:11 -04:00
|
|
|
|
2010-01-01 12:56:29 -05:00
|
|
|
====================================================================
|
|
|
|
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.
|
|
|
|
====================================================================
|
2009-12-24 14:50:37 -05:00
|
|
|
|
|
|
|
-->
|
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">
|
2009-12-24 14:50:37 -05:00
|
|
|
<modelVersion>4.0.0</modelVersion>
|
2011-02-15 09:35:30 -05:00
|
|
|
<parent>
|
|
|
|
<groupId>org.jclouds</groupId>
|
2011-05-21 06:49:57 -04:00
|
|
|
<artifactId>jclouds-demos-project</artifactId>
|
2011-08-04 23:09:23 -04:00
|
|
|
<version>1.2.0-SNAPSHOT</version>
|
2011-02-15 09:35:30 -05:00
|
|
|
</parent>
|
2011-05-21 06:49:57 -04:00
|
|
|
<artifactId>jclouds-demo-googleappengine</artifactId>
|
2009-11-11 02:38:47 -05:00
|
|
|
<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>
|
2011-02-15 10:08:01 -05:00
|
|
|
<appengine.applicationid>jclouds-aws-demo</appengine.applicationid>
|
2011-07-07 22:35:09 -04:00
|
|
|
<appengine.sdk.version>1.4.2</appengine.sdk.version>
|
2009-11-11 02:38:47 -05:00
|
|
|
<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>
|
2011-02-15 09:35:30 -05:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.jclouds</groupId>
|
|
|
|
<artifactId>jclouds-blobstore</artifactId>
|
|
|
|
<version>${project.version}</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.jclouds</groupId>
|
|
|
|
<artifactId>jclouds-compute</artifactId>
|
|
|
|
<version>${project.version}</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.jclouds.provider</groupId>
|
|
|
|
<artifactId>aws-s3</artifactId>
|
|
|
|
<version>${project.version}</version>
|
2011-07-07 22:35:09 -04:00
|
|
|
<scope>runtime</scope>
|
2011-02-15 09:35:30 -05:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.jclouds.provider</groupId>
|
|
|
|
<artifactId>aws-ec2</artifactId>
|
|
|
|
<version>${project.version}</version>
|
2011-07-07 22:35:09 -04:00
|
|
|
<scope>runtime</scope>
|
2011-02-15 09:35:30 -05:00
|
|
|
</dependency>
|
2009-11-11 02:38:47 -05:00
|
|
|
<dependency>
|
2011-01-15 23:58:57 -05:00
|
|
|
<groupId>org.jclouds.driver</groupId>
|
2009-11-11 02:38:47 -05:00
|
|
|
<artifactId>jclouds-gae</artifactId>
|
|
|
|
<version>${project.version}</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
2011-02-15 09:35:30 -05:00
|
|
|
<groupId>com.google.inject.extensions</groupId>
|
2009-11-11 02:38:47 -05:00
|
|
|
<artifactId>guice-servlet</artifactId>
|
2011-04-09 00:47:04 -04:00
|
|
|
<version>3.0</version>
|
2009-11-11 02:38:47 -05:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>displaytag</groupId>
|
|
|
|
<artifactId>displaytag</artifactId>
|
|
|
|
<version>1.2</version>
|
2011-07-07 22:35:09 -04:00
|
|
|
<scope>runtime</scope>
|
2009-11-11 02:38:47 -05:00
|
|
|
<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>
|
2011-07-07 22:35:09 -04:00
|
|
|
<scope>runtime</scope>
|
2009-11-11 02:38:47 -05:00
|
|
|
</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>
|
2011-07-07 22:35:09 -04:00
|
|
|
<scope>runtime</scope>
|
2009-11-11 02:38:47 -05:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
2011-07-07 22:35:09 -04:00
|
|
|
<groupId>javax.servlet</groupId>
|
|
|
|
<artifactId>servlet-api</artifactId>
|
|
|
|
<version>2.5</version>
|
2009-11-11 02:38:47 -05:00
|
|
|
<scope>provided</scope>
|
|
|
|
</dependency>
|
2011-07-07 22:35:09 -04:00
|
|
|
|
2009-11-11 02:38:47 -05:00
|
|
|
<dependency>
|
|
|
|
<groupId>com.google.appengine</groupId>
|
2011-02-15 09:35:30 -05:00
|
|
|
<artifactId>appengine-tools-sdk</artifactId>
|
2011-07-07 22:35:09 -04:00
|
|
|
<version>${appengine.sdk.version}</version>
|
|
|
|
<scope>test</scope>
|
2009-11-11 02:38:47 -05:00
|
|
|
</dependency>
|
|
|
|
</dependencies>
|
|
|
|
<build>
|
|
|
|
<finalName>${project.artifactId}</finalName>
|
|
|
|
<plugins>
|
|
|
|
<plugin>
|
|
|
|
<artifactId>maven-war-plugin</artifactId>
|
2011-07-07 22:35:09 -04:00
|
|
|
<version>2.1.1</version>
|
2009-11-11 02:38:47 -05:00
|
|
|
<configuration>
|
2011-07-07 22:35:09 -04:00
|
|
|
<!-- see http://jira.codehaus.org/browse/MWAR-248 -->
|
|
|
|
<packagingExcludes>WEB-INF/web.xml</packagingExcludes>
|
2009-11-11 02:38:47 -05:00
|
|
|
<webResources>
|
|
|
|
<resource>
|
|
|
|
<directory>src/main/appengine</directory>
|
|
|
|
<targetPath>WEB-INF/</targetPath>
|
|
|
|
<filtering>true</filtering>
|
|
|
|
</resource>
|
|
|
|
</webResources>
|
|
|
|
</configuration>
|
|
|
|
</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>
|
|
|
|
<artifactId>maven-surefire-plugin</artifactId>
|
|
|
|
<executions>
|
|
|
|
<execution>
|
|
|
|
<id>integration</id>
|
|
|
|
<phase>integration-test</phase>
|
|
|
|
<goals>
|
|
|
|
<goal>test</goal>
|
|
|
|
</goals>
|
|
|
|
<configuration>
|
|
|
|
<systemProperties>
|
|
|
|
<property>
|
2011-02-15 09:35:30 -05:00
|
|
|
<name>test.aws.identity</name>
|
2011-07-07 22:35:09 -04:00
|
|
|
<!-- same for EC2 -->
|
|
|
|
<value>${test.aws-s3.identity}</value>
|
2009-11-11 02:38:47 -05:00
|
|
|
</property>
|
|
|
|
<property>
|
2011-02-15 09:35:30 -05:00
|
|
|
<name>test.aws.credential</name>
|
2011-07-07 22:35:09 -04:00
|
|
|
<!-- same for EC2 -->
|
|
|
|
<value>${test.aws-s3.credential}</value>
|
2009-11-11 02:38:47 -05:00
|
|
|
</property>
|
|
|
|
<property>
|
2011-02-15 09:35:30 -05:00
|
|
|
<name>appengine.sdk.root</name>
|
2011-07-07 22:35:09 -04:00
|
|
|
<value>${appengine.sdk.root}</value>
|
2009-11-11 02:38:47 -05:00
|
|
|
</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>
|