Reputation: 415
After upgrading grails from 2.2 to 3.1 I can no longer compile the spring-events plugin.
In my 2.2 project I had the plugin set in build-config.groovy
plugins{
compile ':spring-events:1.2'
}
But now there is a build.gradle file and when I add the plugin, it cannot be found.
Has anyone had issues with this?
Upvotes: 0
Views: 140
Reputation: 24776
The spring events
plugin is not compatible with Grails 3.x. You can find a list of supported plugins in the repository over at Bintray.
Upvotes: 1