Release Notes
Subproject reloading of plugins is now available when plugins are declared in the new plugins
block:
grails {
plugins {
compile ":hibernate"
compile project(':myplugin')
}
}
When running your application with grails run-app
the plugin myplugin
will be reloadable. See Graeme's blog post for more information.