appcfg update
和mvn appengine:update
之间的区别是什么?
Java uploading modules documentation表示要使用此命令上传:
appcfg update
但是同样的文档中有a Java getting-started instruction about uploading的链接,说明了这一点:
mvn appengine:update
这两种上传方法有什么区别?
答案 0 :(得分:2)
目标是相同的:将应用程序部署到App Engine。
appcfg update
要求您已经构建了WAR,并且必须将脚本指向WAR位置。
mvn appengine:update
执行Maven构建,然后上传应用。运行目标将编译,测试和打包应用程序,并为您调用appcfg update
。