-
Notifications
You must be signed in to change notification settings - Fork 28
/
WebflowGrailsPlugin.groovy
34 lines (25 loc) · 1.04 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
24
25
26
27
28
29
30
31
32
33
34
import org.codehaus.groovy.grails.webflow.WebFlowPluginSupport
class WebflowGrailsPlugin {
def version = "1.2.1"
def dependsOn = [core:"1.2 > *",i18n:"1.2 > *", controllers:"1.2 > *"]
def observe = ['controllers']
def loadAfter = ['hibernate']
// the version or versions of Grails the plugin is designed for
def grailsVersion = "1.2 > *"
// resources that are excluded from plugin packaging
def pluginExcludes = [
"grails-app/views/error.gsp"
]
def author = "Graeme Rocher"
def authorEmail = "[email protected]"
def title = "Spring Web Flow Plugin"
def description = '''\\
Integrates Spring Web Flow with Grails
'''
// URL to the plugin's documentation
def documentation = "http://grails.org/plugin/webflow"
def doWithSpring = WebFlowPluginSupport.doWithSpring
def doWithDynamicMethods = WebFlowPluginSupport.doWithDynamicMethods
def doWithApplicationContext = WebFlowPluginSupport.doWithApplicationContext
def onChange = WebFlowPluginSupport.onChange
}