-
Notifications
You must be signed in to change notification settings - Fork 92
/
TwitterBootstrapGrailsPlugin.groovy
22 lines (20 loc) · 1.19 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
class TwitterBootstrapGrailsPlugin {
def version = "3.3.6"
def grailsVersion = "1.3.7 > *"
def author = "Karol Balejko"
def authorEmail = "kb@groovydev.com"
def developers = [
[ name: "Nicholas Wittstruck", email: "nicholas@spotmapping.com" ],
[ name: "Michael Legart", email: "ml@code3.dk" ]
]
def organization = [ name: "GroovyDev", url: "http://groovydev.com/" ]
def title = "Plugin Bootstrap CSS framework resource files"
def description = """Provides Bootstrap CSS framework resource files.
Bootstrap is a 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://getbootstrap.com/getting-started/]!
"""
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" ]
}