发现grails-rest-client-builder错误组织错误

时间:2014-02-28 04:02:23

标签: rest grails

我正在尝试使用grails-rest-client-builder,但是我在安装插件时遇到了问题。

根据文件 https://github.com/grails-plugins/grails-rest-client-builder/ 自述文件说明“编辑BuildConfig.groovy并添加以下依赖项:

编译“:rest-client-builder:2.0.0”

请注意,自述文件说明暗示这应该在依赖下,而不在插件下?

我已将以下内容添加到BuildConfig.groovy:

dependencies {
…
compile ":rest-client-builder:2.0.0"
…
}

但是我收到以下错误:

Loading Grails 2.2.4
| Configuring classpath
| Downloading: rest-client-builder-2.0.0.pom.sha1
:: problems summary ::
:::: ERRORS
        grailsCentral: bad organisation found in http://grails.org/plugins/grails-rest-client-builder/tags/RELEASE_2_0_0/rest-client-builder-2.0.0.pom: expected='' found='org.grails.plugins'

我确实看过帖子: Grails Import Plugin Fails in Grails (rest plugin: compile ":rest-client-builder:2.0.0" and ":rest0.8") 但我认为问题不同。 谢谢, -J

1 个答案:

答案 0 :(得分:3)

对于像其他客户端构建器这样的grails pliugins,您需要将它添加到插件部分而不是依赖部分。

以下是BuildConfig (see highlighted line).

的示例