Releases: apache/grails-core
Releases · apache/grails-core
Grails 3.1.6
Release Notes
Hibernate 5.1
This release includes GORM 5.0.5 which includes support for Hibernate 5.1
Plugin Application Classes
The Application class of plugins should now implement the grails.boot.GrailsPluginApplication interface to avoid an issue where duplicate ApplicationLoader classes are generated. See issue #9904 for reference.
Grails 3.0.17
Grails 3.1.5
Grails 3.0.16
Grails 3.1.4
Grails 3.1.3
Grails 2.5.4
Grails 3.1.2
Grails 3.0.15
Grails 3.1.1
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.