3.0.2にこれらの依存関係がある理由は正確にはわかりませんが、3.0.2を使用しても問題がない場合は、SNAPSHOTの依存関係を除外して、RELEASEバージョンを使用する必要があります。
plugins {
compile (":mongodb:3.0.2") {
excludes 'grails-datastore-gorm-plugin-support'
excludes 'grails-datastore-gorm'
excludes 'grails-datastore-core'
}
}
次に、依存関係で、正しいものを次の場所にプルします:
dependencies {
compile 'org.grails:grails-datastore-gorm-plugin-support:3.1.3.RELEASE'
compile 'org.grails:grails-datastore-gorm:3.1.3.RELEASE'
compile 'org.grails:grails-datastore-core:3.1.3.RELEASE'
}
編集: 実際に3.0.2pomを詳しく調べると、依存関係は3.1.2.RELEASEになるはずです。したがって、3.1.3が使用されているという事実は、何か厄介なことが起こっていることを意味します。 〜/ .m2ディレクトリをクリーンアップすると、「grailsdependency-report」に正しい3.1.2.RELEASE依存関係が表示されるようになりました。