有没有人一起使用过Maven、Grails和 anyone ?
我可以在Grails中使用Maven,在App中使用Grails,但是协同使用它们会导致以下错误:
The command 'grails run-app' is not supported with AppEngine. Use 'grails app-engine' to start the application有没有办法“通过”Maven目标来访问应用程序引擎的插件?
发布于 2009-10-06 01:19:11
AFAIK,Maven Grails插件还不支持Grails AppEngine插件引入的特性。因此,现在您必须运行(不确定您所说的“通过BTW”是什么意思):
grails app-engine run发布于 2010-01-03 03:07:31
在命令提示符中,可以运行:
mvn grails:exec -Dcommand="app-engine" -Dargs="run"它能做你想做的事。
https://stackoverflow.com/questions/1523100
复制相似问题