While trying to install Mongodb grails plug in for grails application, i am getting following error
::::::::::::::::::::::::::::::::::::::::::::::
:: UNRESOLVED DEPENDENCIES ::
::::::::::::::::::::::::::::::::::::::::::::::
:: org.springframework#spring-datastore-web;1.0.0.M3: not found
::::::::::::::::::::::::::::::::::::::::::::::
Any clues what I am doing wrong….
Grails version is 1.3.6
Springsource Tool 2.3.3.CI-R5549-B45
You’ll need to add the relevant repository to the list that Grails searches to resolve dependencies. Looks like
spring-datastore-webis in this SpringSource repos, so add themavenRepoline below to therepositoriessection of your/grails-app/conf/BuildConfig.groovyfile:Hopefully the dependency will now be resolved and you can build the app.