forked from grails-aws/grails-aws
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathAwsGrailsPlugin.groovy
32 lines (27 loc) · 1.54 KB
/
AwsGrailsPlugin.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
import grails.plugin.aws.meta.AwsPluginSupport
class AwsGrailsPlugin {
def version = "1.6.7.6.1"
def grailsVersion = "1.3.0 > *"
def loadAfter = ['services', 'controllers']
def observe = ['services', 'controllers']
def pluginExcludes = [
"grails-app/views/**",
"grails-app/controllers/**/*Controller.groovy",
"grails-app/services/**/*Service.groovy",
"src/docs/**",
"testScripts/*.groovy"
]
def title = "Grails AWS Plugin"
def description = "Amazon Web Services (AWS) grails plugin provides easy access to simpler functions of AWS"
def documentation = "https://grails-aws.github.com/grails-aws"
def license = "APACHE"
def organization = [ name: "Grails AWS", url: "https://github.com/grails-aws" ]
def developers = [[ name: "Lucas Teixeira", email: "[email protected]" ],
[ name: "Jay Prall", email: "[email protected]" ]]
def scm = [ url: "https://github.com/grails-aws/grails-aws" ]
def issueManagement = [ system: "GITHUB", url: "https://github.com/grails-aws/grails-aws/issues" ]
def onChange = AwsPluginSupport.onChange
def doWithSpring = AwsPluginSupport.doWithSpring
def onConfigChange = AwsPluginSupport.onConfigChange
def doWithDynamicMethods = AwsPluginSupport.doWithDynamicMethods
}