in my grails 2.3.4 application (after upgrading from grails 2.2.3) , when I run the grails command line grails install-plugin pluginname I get the below error , even I tried grails list-plugins I'm getting the same error:
Error Resolve error obtaining dependencies: Failed to resolve dependencies (Se log level to 'warn' in BuildConfig.groovy for more information): org.grails.plugins:tomcat:2.3.4 (Use --stacktrace to see the full trace)
i reviewed the BuildConfig.groovy there is no tomcat 2.3.4 what i'm using is 7.0.47 , here are my plugins :
runtime ":hibernate:3.6.10.6"
runtime ":jquery:1.8.3"
runtime :resources:1.1.6
build ":tomcat:7.0.47"
runtime database-migration:1.2.1
compile :cache:1.0.1
how i can solve this issue ?
.grails. Issue agrails cleanand move ahead. Also note,grails install-pluginis no more used in Grails 2.3.*. Plugins has to be manually installed inBuildConfig. As a side note, also checkapplication.propertiesis not referring to any plugin. - dmahapatroruntime database-migration:1.2.1when it should beruntime ":database-migration:1.2.1"- grantmcconnaughey