Spring Web Flow Plugin
6% of Grails users
Dependency :
compile ":webflow:2.0.8.1"
Summary
Integrates Spring Web Flow with Grails
Installation
In Grails 2.0.x, 2.1.x, and 2.2.x the following configuration is needed to install the Web Flow plugin:In Grails 2.3 however the Web Flow code has been entirely moved from Grails Core to this plugin, so from 2.3 on you install it like any other plugin, e.g.Note that versions 2.0.8 and above require Grails 2.2 or higher.Grails 1.3.x users should use the 1.3.8 version.
dependencies {
compile "org.grails:grails-webflow:$grailsVersion"
}
plugins {
…
compile ':webflow:2.0.0', {
exclude 'grails-webflow'
}
}plugins {
…
compile ':webflow:2.0.8.1'
}Description
Plugin that provides Spring Web Flow integration in Grails. The sources can be found on GithubThe documentation can be found in the official Grails user guide.