lionbule 发表于 2013-1-27 12:51:12

maven 构建 Google AppEngine

1. 创建工程
mvn archetype:generate -DarchetypeGroupId=net.kindleit -DarchetypeArtifactId=gae-archetype-jsp -DarchetypeVersion=0.8.4 -DgroupId=com.myapp.test -DartifactId=testapp
 
2. 相关资料
http://code.google.com/p/maven-gae-plugin/
http://www.kindleit.net/maven_gae_plugin/maven-gae-plugin/plugin-info.html
 
3. maven 命令
mvn clean package
mvn gae:run
mvn gae:deploy
 
4. appengine-web.xml
 
    <application>appname</application>
    <version>1</version>
    配置正确,才能deploy
 
5.  管理地址
https://appengine.google.com/
 
 
 
 
 
页: [1]
查看完整版本: maven 构建 Google AppEngine