You are viewing a plain text version of this content. The canonical link for it is here.
Posted to nuvem-commits@incubator.apache.org by sa...@apache.org on 2011/03/22 04:55:39 UTC

svn commit: r1084068 - in /incubator/nuvem/trunk: pom.xml store-appengine-webapp/README store-appengine-webapp/pom.xml store-catalog-appengine-webapp/README store-catalog-appengine-webapp/pom.xml

Author: sagara
Date: Tue Mar 22 04:55:39 2011
New Revision: 1084068

URL: http://svn.apache.org/viewvc?rev=1084068&view=rev
Log:
Added maven-gae-plugin for appengine samples. 

Added:
    incubator/nuvem/trunk/store-appengine-webapp/README
    incubator/nuvem/trunk/store-catalog-appengine-webapp/README
Modified:
    incubator/nuvem/trunk/pom.xml
    incubator/nuvem/trunk/store-appengine-webapp/pom.xml
    incubator/nuvem/trunk/store-catalog-appengine-webapp/pom.xml

Modified: incubator/nuvem/trunk/pom.xml
URL: http://svn.apache.org/viewvc/incubator/nuvem/trunk/pom.xml?rev=1084068&r1=1084067&r2=1084068&view=diff
==============================================================================
--- incubator/nuvem/trunk/pom.xml (original)
+++ incubator/nuvem/trunk/pom.xml Tue Mar 22 04:55:39 2011
@@ -90,6 +90,9 @@
         <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
         <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
         <tuscany.version>2.0-M5.1</tuscany.version>
+        <maven.gae.plugin.version>0.8.2</maven.gae.plugin.version>        
+        <gae.version>1.4.2</gae.version>
+        <datanucleus.version>1.1.5</datanucleus.version>
     </properties>
     
     

Added: incubator/nuvem/trunk/store-appengine-webapp/README
URL: http://svn.apache.org/viewvc/incubator/nuvem/trunk/store-appengine-webapp/README?rev=1084068&view=auto
==============================================================================
--- incubator/nuvem/trunk/store-appengine-webapp/README (added)
+++ incubator/nuvem/trunk/store-appengine-webapp/README Tue Mar 22 04:55:39 2011
@@ -0,0 +1,11 @@
+Steps to run with Maven 
+
+ 1.)  "mvn gae:unpack " to unpack appengine SDK. 
+
+ 2.) "mvn gae:run" to run the application locally. You can access application using http://localhost:8080/ url.
+
+ 3.)  Change the application name in the "appengine-web.xml" file located in store-appengine-webapp/war/WEB-INF directory. 
+
+       e.g -  <application>yournamedemo1</application>
+
+ 4.) "mvn gae:update" to upload the application. 

Modified: incubator/nuvem/trunk/store-appengine-webapp/pom.xml
URL: http://svn.apache.org/viewvc/incubator/nuvem/trunk/store-appengine-webapp/pom.xml?rev=1084068&r1=1084067&r2=1084068&view=diff
==============================================================================
--- incubator/nuvem/trunk/store-appengine-webapp/pom.xml (original)
+++ incubator/nuvem/trunk/store-appengine-webapp/pom.xml Tue Mar 22 04:55:39 2011
@@ -217,6 +217,24 @@
                     <warSourceDirectory>war</warSourceDirectory>
                 </configuration>
             </plugin>
+            
+             <!--
+				The maven-gae-plugin. Type "mvn gae:run" to run project, "mvn
+				gae:deploy" to upload to GAE.
+			-->
+			<plugin>
+				<groupId>net.kindleit</groupId>
+				<artifactId>maven-gae-plugin</artifactId>
+				<version>${maven.gae.plugin.version}</version>	
+				<dependencies>
+					<dependency>
+						<groupId>net.kindleit</groupId>
+						<artifactId>gae-runtime</artifactId>
+						<version>${gae.version}</version>
+						<type>pom</type>
+					</dependency>
+				</dependencies>			
+			</plugin>
         </plugins>
     </build>
 </project>

Added: incubator/nuvem/trunk/store-catalog-appengine-webapp/README
URL: http://svn.apache.org/viewvc/incubator/nuvem/trunk/store-catalog-appengine-webapp/README?rev=1084068&view=auto
==============================================================================
--- incubator/nuvem/trunk/store-catalog-appengine-webapp/README (added)
+++ incubator/nuvem/trunk/store-catalog-appengine-webapp/README Tue Mar 22 04:55:39 2011
@@ -0,0 +1,11 @@
+Steps to run with Maven 
+
+ 1.)  "mvn gae:unpack " to unpack appengine SDK. 
+
+ 2.) "mvn gae:run" to run the application locally. You can access application using http://localhost:8080/ url.
+
+ 3.)  Change the application name in the "appengine-web.xml" file located in store-appengine-webapp/war/WEB-INF directory. 
+
+       e.g -  <application>yournamedemo1</application>
+
+ 4.) "mvn gae:update" to upload the application. 

Modified: incubator/nuvem/trunk/store-catalog-appengine-webapp/pom.xml
URL: http://svn.apache.org/viewvc/incubator/nuvem/trunk/store-catalog-appengine-webapp/pom.xml?rev=1084068&r1=1084067&r2=1084068&view=diff
==============================================================================
--- incubator/nuvem/trunk/store-catalog-appengine-webapp/pom.xml (original)
+++ incubator/nuvem/trunk/store-catalog-appengine-webapp/pom.xml Tue Mar 22 04:55:39 2011
@@ -153,6 +153,24 @@
                     <warSourceDirectory>war</warSourceDirectory>
                 </configuration>
             </plugin>
+            
+             <!--
+				The maven-gae-plugin. Type "mvn gae:run" to run project, "mvn
+				gae:deploy" to upload to GAE.
+			-->
+			<plugin>
+				<groupId>net.kindleit</groupId>
+				<artifactId>maven-gae-plugin</artifactId>
+				<version>${maven.gae.plugin.version}</version>	
+				<dependencies>
+					<dependency>
+						<groupId>net.kindleit</groupId>
+						<artifactId>gae-runtime</artifactId>
+						<version>${gae.version}</version>
+						<type>pom</type>
+					</dependency>
+				</dependencies>			
+			</plugin>
         </plugins>
     </build>