idrop-web/grails-app/conf/BuildConfig.groovy contains the plugins
plugins {
runtime ":hibernate:$grailsVersion"
build ":tomcat:$grailsVersion"
}
When I build, $grailsVersion resolves to 2.3.7, which results in unresolved dependency errors. The issue can be corrected by changing to the latest versions of the plugins. Currently, the following works for me:
plugins {
runtime ":hibernate:3.6.10.10"
build ":tomcat:7.0.52.1"
}
idrop-web/grails-app/conf/BuildConfig.groovy contains the pluginsWhen I build, $grailsVersion resolves to 2.3.7, which results in unresolved dependency errors. The issue can be corrected by changing to the latest versions of the plugins. Currently, the following works for me: