forked from Grails-Plugin-Consortium/grails-filterpane
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathFilterpaneGrailsPlugin.groovy
30 lines (25 loc) · 1.15 KB
/
FilterpaneGrailsPlugin.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
class FilterpaneGrailsPlugin {
def version = "2.4.7"
def grailsVersion = "2.4 > *"
def author = "Grails Plugin Consortium"
def authorEmail = ""
def title = "Grails FilterPane Plugin"
def description = "This plugin adds automatic and customizable filtering capabilities to any Grails application's list views."
def documentation = "http://grails-plugin-consortium.github.io/grails-filterpane/"
def developers = [
[name: "Steve Krenek", email: "[email protected]"],
[name: "Christian Oestreich", email: "[email protected]"],
[name: "Jonas Stenberg", email: "[email protected]"]]
def license = 'APACHE'
def issueManagement = [system: 'JIRA', url: 'http://jira.grails.org/browse/GPFILTERPANE']
def scm = [url: "https://github.com/Grails-Plugin-Consortium/grails-filterpane"]
def pluginExcludes = [
'grails-app/conf/codenarc.groovy',
'grails-app/conf/codenarc.ruleset.all.groovy.txt',
'grails-app/domain/**',
'grails-app/controllers/**',
'grails-app/views/book/**',
'src/docs/**',
'codenarc.properties'
]
}