In Grails, there is a variant how to include local plugin from sources. According to docs, one may type in BuildConfig.groovy:
// Useful to test plugins you are developing.
grails.plugin.location.shiro =
"/home/dilbert/dev/plugins/grails-shiro"
// Useful for modular applications where all plugins and
// applications are in the same directory.
grails.plugin.location.'grails-ui' = "../grails-grails-ui"
The problem is that it doesn't work in Grails 2.0.RC1. I've tried to do grails clean, to install plugin with grails install-plugin and to place it to BuildConfig.groovy. Still unable to resolve.
BuildConfigroute, with 2.0RC1 and it seems to work fine... You are doing one or the other aren't you? Notgrails install-pluginAND placing it inBuildConfig.groovyat the same time? – tim_yates Nov 16 '11 at 13:31grails.plugin.location.*line you just shouldn't install plugin at all. Just type this lint inBuildConfig.groovyand dograils run-app! – Dmitry Kurinskiy Nov 16 '11 at 13:34