如何将 mongodb and/or postgresql-extension 插件添加到 Grails 3.0.0+?

How does one add mongodb and/or postgresql-extension plugins to Grails 3.0.0+?

我今天玩了 Grails 3.0.0.M1 并尝试使用 mongodb 制作一个小应用程序,但是我无法将它正确添加到我的 build.gradle 文件中。正确的语法是什么?我试过(摘录):

repositories {
  mavenLocal()
  maven { url "http://repo.grails.org/grails/core" }
}

dependencyManagement {
    imports {
        mavenBom "org.grails:grails-bom:$grailsVersion"
    }
    applyMavenExclusions false
}


dependencies {
    //...
    compile ':mongodb:3.0.2'
    //...
}

正如该插件的文档所建议的那样,但最终没有找到它。我还注意到 grailsCentral() 快捷方式不起作用。

然后我尝试添加 postgresql-extensions,但还是一样。语法是否已更改,这些插件当时是否不受支持,或者是什么原因?

另外,有能力的人可以添加一个grails-3.0标签吗?

我是 postgresql-extensions 的作者之一。目前该插件与 Grails 3.0 不兼容。我们需要等到 Grails 团队发布有关如何将插件从 2.x 迁移到 3.0.

的更新文档

对于 mongodb 使用:

compile 'org.grails.plugins:mongodb:4.0.0.M1'