-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathplugin.xml
30 lines (30 loc) · 1.58 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
<plugin name='easyb' version='2.0.2' grailsVersion='1.2.0 > *'>
<author>Richard Vowles, Gustavo Madruga, Jeffrey Erikson</author>
<authorEmail>[email protected], [email protected]</authorEmail>
<title>Allows Grails applications to write unit, integration and functional tests. Integrates Grails unit testing features</title>
<description>\
Groovy testing implementation of easyb - exposes all of the easyb functionality and an infrastructure to expose more testing functionality.
</description>
<documentation>http://grails.org/plugin/easyb</documentation>
<resources>
<resource>BootStrap</resource>
<resource>BuildConfig</resource>
<resource>Config</resource>
<resource>DataSource</resource>
<resource>UrlMappings</resource>
<resource>com.bluetrainsoftware.easyb.grails.test.controllers.AuthorController</resource>
<resource>com.bluetrainsoftware.easyb.grails.test.domain.Author</resource>
<resource>com.bluetrainsoftware.easyb.grails.test.domain.Book</resource>
<resource>com.bluetrainsoftware.easyb.grails.test.service.AuthorService</resource>
</resources>
<dependencies>
<resolvers>
<resolver type='grailsPlugins' name='grailsPlugins' />
<resolver type='mavenLocal' />
<resolver type='mavenCentral' />
<resolver type='mavenRepo' root='http://oss.sonatype.org/content/groups/public/' name='http://oss.sonatype.org/content/groups/public/' m2compatbile='true' />
</resolvers>
<dependency group='org.easyb' name='easyb' version='0.9.7' conf='build' transitive='true' />
</dependencies>
<behavior />
</plugin>