forked from burtbeckwith/grails-webflow
-
Notifications
You must be signed in to change notification settings - Fork 26
/
WebflowGrailsPlugin.groovy
23 lines (20 loc) · 1.02 KB
/
WebflowGrailsPlugin.groovy
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
import org.codehaus.groovy.grails.webflow.WebFlowPluginSupport
class WebflowGrailsPlugin {
def version = "2.1.1-SNAPSHOT"
def observe = ['controllers']
def loadAfter = ['hibernate','hibernate4']
def grailsVersion = "2.4 > *"
def author = "Graeme Rocher"
def authorEmail = "[email protected]"
def title = "Spring Web Flow Plugin"
def description = 'Integrates Spring Web Flow with Grails'
def documentation = "http://grails-plugins.github.io/grails-webflow-plugin/"
def license = "APACHE"
def organization = [name: 'Pivotal', url: 'http://www.gopivotal.com/oss/']
def issueManagement = [system: 'JIRA', url: 'http://jira.grails.org/browse/GPWEBFLOW']
def scm = [url: 'https://github.com/grails-plugins/grails-webflow-plugin']
def doWithSpring = WebFlowPluginSupport.doWithSpring
def doWithDynamicMethods = WebFlowPluginSupport.doWithDynamicMethods
def doWithApplicationContext = WebFlowPluginSupport.doWithApplicationContext
def onChange = WebFlowPluginSupport.onChange
}