forked from Grails-Plugin-Consortium/grails-filterpane
-
Notifications
You must be signed in to change notification settings - Fork 0
/
FilterpaneGrailsPlugin.groovy
33 lines (27 loc) · 1.28 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
31
32
33
class FilterpaneGrailsPlugin {
def version = "2.1.8"
def grailsVersion = "1.3 > *"
def author = "Grails Plugin Consortium"
def authorEmail = ""
def title = "Dynamically filter / search domain objects."
def description = "This plugin adds automatic and customizable filtering capabilities to any Grails application's list views."
// URL to the plugin's documentation
def documentation = "http://grails-plugin-consortium.github.io/grails-filterpane/"
def developers = [
[name: "Steve Krenek", email: "zeddmaxim@gmail.com"],
[name: "Christian Oestreich", email: "acetrike@gmail.com"],
[name: "Jonas Stenberg", email: "jonas.stenberg@21grams.com"]]
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/**',
'test/**',
'codenarc.properties'
]
}