Wednesday, 15 August 2012

mongodb - Unable to download grails datastore gorm 3.1.3 version -



mongodb - Unable to download grails datastore gorm 3.1.3 version -

i'm using grails 2.4.4. when i'm upgrading mongodb plugin 3.0.1 latest 3.0.2, unable find , install 1 jar. throwing:

| error resolve error obtaining dependencies: failed read artifact descriptor org.grails:grails-datastore-gorm-plugin-support:jar:3.1.3.build-snapshot (use --stacktrace see total trace)

my repository configuration in buildconfig.groovy are:

inherits true mavenrepo "https://repo1.maven.org/maven2/" mavenrepo "https://repo.grails.org/grails/plugins" grailsplugins() grailshome() grailscentral() mavenlocal() //mavencentral()

i got solution. how mongodb plugin trying pull build-snapshot version of grails-datastore-gorm-plugin-support not available in maven.

so added release version in buildconfig dependency

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

and worked.

mongodb grails gorm grails-2.4 gorm-mongodb

No comments:

Post a Comment