2

我正在按照此视频中描述的步骤 - http://www.youtube.com/watch?v=wP-aZdXymro在 GAE 上部署我的 grails 应用程序。我正在运行 Grails-2.2.0 并且我已经卸载了休眠插件。但是,当我尝试安装 app-engine 插件时,我收到以下消息 -

==> grails install-plugin app-engine
| Configuring classpath
| Error Failed to resolve dependencies (Set log level to 'warn' in BuildConfig.groovy for     more information):

- org.grails:grails-datastore-gorm-plugin-support:1.0.0.RELEASE
- org.grails:grails-datastore-gorm-jpa:1.0.0.RC3
- org.grails:grails-datastore-jpa:1.0.0.RC3
- org.grails:grails-datastore-web:1.0.0.RELEASE
4

2 回答 2

1

请不要使用 install-plugin,它已被弃用。从您的 application.properties 中删除所有插件。然后,将其添加到您的 BuildConfig.groovy:

compile ":app-engine:0.8.10"

之后,您可以检查哪些插件仍需要数据存储插件(如果有):

 dependency-report
于 2013-01-23T08:50:46.367 回答
1

Grails 不适用于 GAE。如果您想利用 Groovy 语法,最好使用 Gaelyk ( https://gaelyk.appspot.com/ ),或者将 Grails 应用程序部署到更传统的云提供商,如 Heroku、Cloudbees、AWS 等.

于 2013-01-23T08:59:22.543 回答