-
Notifications
You must be signed in to change notification settings - Fork 3
/
ThumbnailGrailsPlugin.groovy
39 lines (32 loc) · 1.27 KB
/
ThumbnailGrailsPlugin.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
35
36
37
38
39
class ThumbnailGrailsPlugin {
// the plugin version
def version = "1.3"
// the version or versions of Grails the plugin is designed for
def grailsVersion = "2.0 > *"
// the other plugins this plugin depends on
def dependsOn = ["burningImage": "* > 0.5"]
// resources that are excluded from plugin packaging
def pluginExcludes = [
"grails-app/views/error.gsp"
]
def title = "Thumbnail Plugin" // Headline display name of the plugin
def author = "Bruno Gama Catao"
def authorEmail = ""
def description = '''\
Simple plugin for handling image thumbnails.
'''
// URL to the plugin's documentation
def documentation = "https://github.com/brunogamacatao/thumbnail/blob/master/README.md"
// Extra (optional) plugin metadata
// License: one of 'APACHE', 'GPL2', 'GPL3'
def license = "APACHE"
// Location of the plugin's issue tracker.
def issueManagement = [ system: "github", url: "https://github.com/brunogamacatao/thumbnail/issues" ]
// Online location of the plugin's browseable source code.
def scm = [ url: "https://github.com/brunogamacatao/thumbnail" ]
def doWithSpring = {
thumbnailEditorRegistrar(ThumbnailEditorRegistrar) {
thumbnailService = ref("thumbnailService")
}
}
}