forked from joergrech/KickstartWithBootstrap
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathplugin.xml
40 lines (40 loc) · 1.87 KB
/
plugin.xml
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
34
35
36
37
38
39
40
<plugin name='kickstart-with-bootstrap' version='0.9.8' grailsVersion='2.0 > *'>
<author>Joerg Rech</author>
<authorEmail>[email protected]</authorEmail>
<title>Kickstart with Bootstrap - Good looking websites!</title>
<description>Kickstart is a plugin for Grails to start your project with a good looking frontend. It provides adapted scaffolding templates for standard CRUD pages using the Bootstrap web page template by Twitter.</description>
<documentation>http://grails.org/plugin/kickstart-with-bootstrap</documentation>
<type>KickstartWithBootstrapGrailsPlugin</type>
<resources>
<resource>KickstartConfig</resource>
<resource>KickstartResources</resource>
<resource>kickstart.KickstartFilters</resource>
<resource>spring.resources</resource>
<resource>HomeController</resource>
<resource>kickstartwithbootstrapgrailsplugin._DemoPageController</resource>
<resource>kickstartwithbootstrapgrailsplugin._DemoPage</resource>
<resource>kickstart.BootstrapTagLib</resource>
</resources>
<repositories>
<repository name='grailsCentral' url='http://grails.org/plugins' />
<repository name='mavenCentral' url='http://repo1.maven.org/maven2/' />
<repository name='http://grails.org/plugins' url='http://grails.org/plugins' />
</repositories>
<dependencies>
<runtime>
<dependency group='org.lesscss' name='lesscss' version='1.3.3' />
</runtime>
</dependencies>
<plugins>
<compile>
<plugin group='org.grails.plugins' name='lesscss-resources' version='1.3.1' />
<plugin group='org.grails.plugins' name='font-awesome-resources' version='3.0' />
</compile>
<runtime>
<plugin group='org.grails.plugins' name='resources' version='1.1.6' />
<plugin group='org.grails.plugins' name='jquery' version='1.8.3' />
</runtime>
</plugins>
<runtimePluginRequirements />
<behavior />
</plugin>