-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathJqueryMobileGrailsPlugin.groovy
25 lines (21 loc) · 1.05 KB
/
JqueryMobileGrailsPlugin.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
class JqueryMobileGrailsPlugin {
// the plugin version
def version = "1.1.0.5"
// the version or versions of Grails the plugin is designed for
def grailsVersion = "1.3.7 > *"
// the other plugins this plugin depends on
def dependsOn = ['resources':'1.0 > *', 'jquery':'1.6 > *']
// resources that are excluded from plugin packaging
def pluginExcludes = [
"grails-app/views/error.gsp"
]
def author = "Karol Balejko"
def authorEmail = "[email protected]"
def title = "Plugin jQuery mobile framework resource files"
def description = 'Plugin jQuery mobile framework resource files. To get started -- checkout http://jquerymobile.com/'
// URL to the plugin's documentation
def documentation = "https://github.com/groovydev/jquery-mobile-grails-plugin/blob/master/README.md"
def license = "APACHE"
def issueManagement = [ system: "github", url: "https://github.com/groovydev/jquery-mobile-grails-plugin/issues" ]
def scm = [ url: "https://github.com/groovydev/jquery-mobile-grails-plugin" ]
}