summaryrefslogtreecommitdiffstats
path: root/sandbox/sca-cloud-tutorial/cloud-google/pom.xml
diff options
context:
space:
mode:
authorlresende <lresende@13f79535-47bb-0310-9956-ffa450edef68>2009-10-29 00:23:28 +0000
committerlresende <lresende@13f79535-47bb-0310-9956-ffa450edef68>2009-10-29 00:23:28 +0000
commitc8633f6406d0ec0340c5fe5afa1a70bee97efc42 (patch)
tree2d10a3f2b732cd2d8dd6c73dbc54a8bbb95504b9 /sandbox/sca-cloud-tutorial/cloud-google/pom.xml
parentb62097b1609bb5cb5e1c6764dc91bcbf18b8f49d (diff)
Integrating with cloud-appengine-sdk module to avoid issues with building the cloud-google module with a clean maven repo (without appengine sdk available in it)
git-svn-id: http://svn.us.apache.org/repos/asf/tuscany@830808 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to '')
-rw-r--r--sandbox/sca-cloud-tutorial/cloud-google/pom.xml65
1 files changed, 7 insertions, 58 deletions
diff --git a/sandbox/sca-cloud-tutorial/cloud-google/pom.xml b/sandbox/sca-cloud-tutorial/cloud-google/pom.xml
index 20ac96d799..f36557661a 100644
--- a/sandbox/sca-cloud-tutorial/cloud-google/pom.xml
+++ b/sandbox/sca-cloud-tutorial/cloud-google/pom.xml
@@ -36,24 +36,17 @@
<artifactId>tuscany-cloud-api</artifactId>
<version>2.0-SNAPSHOT</version>
</dependency>
-
- <dependency>
- <groupId>com.google.appengine</groupId>
- <artifactId>appengine-tools</artifactId>
- <version>1.2.6</version>
- <scope>provided</scope>
- </dependency>
<dependency>
- <groupId>com.google.appengine</groupId>
- <artifactId>appengine-api</artifactId>
- <version>1.2.6</version>
- <scope>provided</scope>
- </dependency>
-
+ <groupId>org.apache.tuscany.sca</groupId>
+ <artifactId>tuscany-cloud-appengine-sdk</artifactId>
+ <version>2.0-SNAPSHOT</version>
+ <type>pom</type>
+ </dependency>
+
<dependency>
<groupId>com.google.appengine</groupId>
- <artifactId>appengine-local-runtime-shared</artifactId>
+ <artifactId>appengine-api</artifactId>
<version>1.2.6</version>
<scope>provided</scope>
</dependency>
@@ -90,52 +83,8 @@
</classpathContainers>
</configuration>
</plugin>
- <plugin>
- <groupId>org.apache.maven.plugins</groupId>
- <artifactId>maven-antrun-plugin</artifactId>
- <!-- version>1.1</version -->
- <dependencies>
- <dependency>
- <groupId>ant</groupId>
- <artifactId>ant-trax</artifactId>
- <version>1.6.5</version>
- </dependency>
- </dependencies>
- <executions>
- <execution>
- <id>install-appengine</id>
- <phase>validate</phase>
- <goals>
- <goal>run</goal>
- </goals>
- <configuration>
- <tasks>
- <ant antfile="./build-appengine.xml" target="install">
- <property name="localRepository" value="${settings.localRepository}"/>
- </ant>
- </tasks>
- </configuration>
- </execution>
- <execution>
- <id>clean-appengine-files</id>
- <phase>clean</phase>
- <goals>
- <goal>run</goal>
- </goals>
- <configuration>
- <tasks>
- <ant antfile="./build-appengine.xml" target="clean-appengine-files">
- <property name="localRepository" value="${settings.localRepository}"/>
- </ant>
- </tasks>
- </configuration>
- </execution>
- </executions>
- </plugin>
</plugins>
</build>
-
-
</project>