无法解决Grails 3中渲染插件的依赖关系

时间:2015-11-17 20:53:47

标签: grails dependencies rendering

我在grary 3项目的build.gradle中添加了渲染插件作为依赖项,如https://grails.org/plugin/rendering中所述

compile ":rendering:1.0.0"

当我执行'gradle dependencies'时,它表示失败。它没有给我任何错误消息,但它表示列出依赖项时失败。

这些是使用项目

生成的默认存储库
repositories {

    mavenLocal()

    maven { url "https://repo.grails.org/grails/core" }
}

我甚至尝试过这种方式,但没有工作

compile "rendering:rendering:1.0.0"

如果我遗漏了任何内容或语法错误,请告诉我。

1 个答案:

答案 0 :(得分:3)

rendering插件的1.0.0版与Grails 3不兼容。兼容版本为2.0.0-SNAPSHOT及更高版本。

compile "org.grails.plugins:rendering:2.0.0-SNAPSHOT"

build.gradle should be good with the repository that is currently present

使用Grails 2. *,是的,您需要使用此回购:http://repo.grails.org/grails/plugins/org/grails/plugins/rendering/1.0.0/

maven { url "https://repo.grails.org/grails/plugins" }