summaryrefslogtreecommitdiffstats
path: root/sandbox/sca-cloud-tutorial
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
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 'sandbox/sca-cloud-tutorial')
-rw-r--r--sandbox/sca-cloud-tutorial/cloud-google/build-appengine.xml98
-rw-r--r--sandbox/sca-cloud-tutorial/cloud-google/pom.xml65
-rw-r--r--sandbox/sca-cloud-tutorial/pom.xml1
3 files changed, 8 insertions, 156 deletions
diff --git a/sandbox/sca-cloud-tutorial/cloud-google/build-appengine.xml b/sandbox/sca-cloud-tutorial/cloud-google/build-appengine.xml
deleted file mode 100644
index d93d691a7e..0000000000
--- a/sandbox/sca-cloud-tutorial/cloud-google/build-appengine.xml
+++ /dev/null
@@ -1,98 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<!--
- * 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
- *
- * 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 name="AppEngineSDKInstaller">
-
-
- <property name="appengine.version" value="1.2.6"/>
- <property name="appengine.distribution.location" value="http://googleappengine.googlecode.com/files/appengine-java-sdk-${appengine.version}.zip" />
- <property name="unpack.location" value="${basedir}/target/appengine-java-sdk-${appengine.version}"/>
-
- <property name="appengine.tools.api" value="${basedir}/target/appengine-java-sdk-${appengine.version}/lib/appengine-tools-api.jar"/>
- <property name="appengine.api" value="${basedir}/target/appengine-java-sdk-${appengine.version}/lib/impl/appengine-api.jar"/>
- <property name="appengine.local.runtime.shared" value="${basedir}/target/appengine-java-sdk-${appengine.version}/lib/shared/appengine-local-runtime-shared.jar"/>
- <property name="localRepository" value="${user.home}/.m2/repository"/>
-
- <target name="check-installed">
- <condition property="already.installed" >
- <available file="${localRepository}/com/google/appengine-java-sdk/${appengine.version}/appengine-java-sdk-${appengine.version}.zip"/>
- </condition>
- <condition property="maven.suffix" value="">
- <os family="unix"/>
- </condition>
- <condition property="maven.suffix" value=".bat">
- <os family="windows"/>
- </condition>
- </target>
-
-
- <target name="check-unpacked">
- <condition property="already.unpacked" >
- <available file="${unpack.location}"/>
- </condition>
- </target>
-
- <target name="install" depends="check-installed" unless="already.installed">
- <mkdir dir="${basedir}/target/appengine-download/"/>
- <get src="${appengine.distribution.location}"
- dest="${basedir}/target/appengine-download/appengine-java-sdk-${appengine.version}.zip"
- verbose="true"
- usetimestamp="true"/>
- <exec executable="mvn${maven.suffix}" dir="${basedir}" failonerror="false">
- <arg line="install:install-file -DgroupId=com.google -DartifactId=appengine-java-sdk -Dversion=${appengine.version} -Dpackaging=zip -DgeneratePom=true -Dfile=${basedir}/target/appengine-download/appengine-java-sdk-${appengine.version}.zip"/>
- </exec>
-
- <antcall target="unpack-appengine-sdk"/>
-
- <exec executable="mvn${maven.suffix}" dir="${basedir}" failonerror="false">
- <arg line="install:install-file -DgroupId=com.google.appengine -DartifactId=appengine-tools -Dversion=${appengine.version} -Dpackaging=jar -DgeneratePom=true -Dfile=${appengine.tools.api}"/>
- </exec>
-
- <exec executable="mvn${maven.suffix}" dir="${basedir}" failonerror="false">
- <arg line="install:install-file -DgroupId=com.google.appengine -DartifactId=appengine-api -Dversion=${appengine.version} -Dpackaging=jar -DgeneratePom=true -Dfile=${appengine.api}"/>
- </exec>
-
- <exec executable="mvn${maven.suffix}" dir="${basedir}" failonerror="false">
- <arg line="install:install-file -DgroupId=com.google.appengine -DartifactId=appengine-local-runtime-shared -Dversion=${appengine.version} -Dpackaging=jar -DgeneratePom=true -Dfile=${appengine.local.runtime.shared}"/>
- </exec>
-
- <exec executable="mvn${maven.suffix}" dir="${basedir}" failonerror="false">
- <arg line="install:install-file -DgroupId=com.google.appengine -DartifactId=appengine-tools -Dversion=${appengine.version} -Dpackaging=jar -DgeneratePom=true -Dfile=${appengine.tools.api}"/>
- </exec>
-
- </target>
-
- <target name="unpack-appengine-sdk" depends="check-installed, check-unpacked" unless="already.unpacked">
- <fail message="AppEngine SDK zip file not installed in local repository: ${localRepository}" unless="already.installed"/>
- <mkdir dir="${basedir}/target/appengine-unpack-temp/"/>
- <unzip src="${localRepository}/com/google/appengine-java-sdk/${appengine.version}/appengine-java-sdk-${appengine.version}.zip"
- dest="${basedir}/target/appengine-unpack-temp/"
- overwrite="false">
- </unzip>
- <move todir="${unpack.location}">
- <fileset dir="${basedir}/target/appengine-unpack-temp/appengine-java-sdk-${appengine.version}"/>
- </move>
- <delete dir="${basedir}/target/appengine-unpack-temp/"/>
- </target>
-
-
- <target name="clean-appengine-files">
- <delete dir="${unpack.location}"/>
- </target>
-</project>
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>
diff --git a/sandbox/sca-cloud-tutorial/pom.xml b/sandbox/sca-cloud-tutorial/pom.xml
index 930f293d77..1f8d1dad5e 100644
--- a/sandbox/sca-cloud-tutorial/pom.xml
+++ b/sandbox/sca-cloud-tutorial/pom.xml
@@ -38,6 +38,7 @@
</activation>
<modules>
<module>cloud-api</module>
+ <module>cloud-appengine-sdk</module>
<module>cloud-google</module>
<module>store-assets</module>
<module>store-appengine-webapp</module>