0

我正在使用 grails 2.4.4。当我将mongodb插件从 3.0.1 升级到最新的 3.0.2 时,它无法找到并安装一个 jar。它的投掷:

| Error Resolve error obtaining dependencies: Failed to read artifact descriptor for org.grails:grails-datastore-gorm-plugin-support:jar:3.1.3.BUILD-SNAPSHOT (Use --stacktrace to see the full trace)

我在 BuildConfig.groovy 中的存储库配置是:

inherits true

mavenRepo "https://repo1.maven.org/maven2/"
mavenRepo "https://repo.grails.org/grails/plugins"
grailsPlugins()
grailsHome()
grailsCentral()

mavenLocal()
//mavenCentral()
4

1 回答 1

0

我得到了解决方案。一些 mongodb 插件如何尝试提取grails-datastore-gorm-plugin-support 的BUILD-SNAPSHOT版本,这在 maven 中不可用。

所以我在 BuildConfig 依赖项中添加了它的RELEASE版本

compile 'org.grails:grails-datastore-gorm-plugin-support:3.1.3.RELEASE'

它奏效了。

于 2014-11-06T06:14:21.937 回答