forked from agorapulse/grails-aws-sdk
-
Notifications
You must be signed in to change notification settings - Fork 0
/
AwsSdkGrailsPlugin.groovy
24 lines (21 loc) · 1.05 KB
/
AwsSdkGrailsPlugin.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
class AwsSdkGrailsPlugin {
def version = "1.3.12"
def grailsVersion = "2.0 > *"
def dependsOn = [:]
def loadAfter = ['services', 'controllers']
def pluginExcludes = [
"grails-app/views/error.gsp"
]
def title = "AWS SDK Grails Plugin"
def author = "Benoit Hediard"
def authorEmail = "[email protected]"
def description = '''The AWS SDK Plugin allows your Grails application to use the Amazon Web Services infrastructure services.
It provides simple wrapper service around the official AWS SDK for Java.
Using the SDK, developers can build solutions for Amazon Simple Storage Service (Amazon S3), Amazon Elastic Compute Cloud (Amazon EC2), Amazon SimpleDB, and more.
'''
def documentation = "http://benorama.github.com/grails-aws-sdk/guide/"
def license = "APACHE"
def organization = [ name: "AgoraPulse", url: "http://www.agorapulse.com/" ]
def issueManagement = [ system: "github", url: "https://github.com/benorama/grails-aws-sdk/issues" ]
def scm = [ url: "https://github.com/benorama/grails-aws-sdk" ]
}