forked from groovydev/twitter-bootstrap-grails-plugin
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathTwitterBootstrapGrailsPlugin.groovy
33 lines (27 loc) · 1.51 KB
/
TwitterBootstrapGrailsPlugin.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
import org.groovydev.TwitterBootstrapTagLib
class TwitterBootstrapGrailsPlugin {
// the plugin version
def version = "2.3.1"
// 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 > *']
// resources that are excluded from plugin packaging
def pluginExcludes = [
"grails-app/views/error.gsp"
]
def author = "Karol Balejko"
def authorEmail = "[email protected]"
def developers = [ [ name: "Nicholas Wittstruck", email: "[email protected]" ]]
def organization = [ name: "GroovyDev", url: "http://groovydev.com/" ]
def title = "Plugin Twitter Bootstrap CSS framework resource files"
def description = """Provides Twitter Bootstrap CSS framework resource files.
Bootstrap is Twitter's toolkit for kickstarting CSS for websites, apps, and more. It includes base CSS styles for typography, forms, buttons, tables, grids, navigation, alerts, and more.
To get started with Bootstrap checkout the [Bootstrap Documentation|http://twitter.github.com/bootstrap]!
"""
// URL to the plugin's documentation
def documentation = "https://github.com/groovydev/twitter-bootstrap-grails-plugin/blob/master/README.md"
def license = "APACHE"
def issueManagement = [ system: "github", url: "https://github.com/groovydev/twitter-bootstrap-grails-plugin/issues" ]
def scm = [ url: "https://github.com/groovydev/twitter-bootstrap-grails-plugin" ]
}