-
Notifications
You must be signed in to change notification settings - Fork 5
/
KarmanGrailsPlugin.groovy
28 lines (23 loc) · 1.14 KB
/
KarmanGrailsPlugin.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
import com.bertramlabs.plugins.karman.KarmanConfigHolder
import com.bertramlabs.plugins.karman.StorageProvider
import com.bertramlabs.plugins.karman.local.LocalStorageProvider
class KarmanGrailsPlugin {
def version = "0.10.3"
def grailsVersion = "2.2 > *"
def title = "Karman Plugin"
def author = "David Estes"
def authorEmail = "[email protected]"
def description = 'Karman is a standardized / extensible interface plugin for dealing with various cloud services including Local and S3.'
def documentation = "http://bertramdev.github.io/karman"
def license = "APACHE"
def organization = [name: "Bertram Labs", url: "http://www.bertramlabs.com/"]
def issueManagement = [ system: "GITHUB", url: "http://github.com/bertramdev/karman/issues" ]
def scm = [ url: "http://github.com/bertramdev/karman" ]
def pluginExcludes = [
]
def developers = [ [name: 'Brian Wheeler'] ]
def doWithApplicationContext = { applicationContext ->
def config = application.config.grails.plugin.karman
KarmanConfigHolder.config = config
}
}