Skip to content

Grails 3.1.1

Choose a tag to compare

@graemerocher graemerocher released this 04 Feb 12:50
· 38485 commits to 7.0.x since this release

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.