-
Notifications
You must be signed in to change notification settings - Fork 15
Expand file tree
/
Copy pathplugin.xml
More file actions
28 lines (28 loc) · 1.34 KB
/
plugin.xml
File metadata and controls
28 lines (28 loc) · 1.34 KB
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
<plugin name='springcache' version='1.2' grailsVersion='1.2-M3 > *'>
<author>Rob Fletcher</author>
<authorEmail>rob@energizedwork.com</authorEmail>
<title>Spring Cache Plugin</title>
<description>Allows caching and flushing aspects to be added to Grails services using annotations.</description>
<documentation>http://grails.org/Springcache+Plugin</documentation>
<resources>
<resource>BuildConfig</resource>
<resource>grails.plugin.springcache.SpringcacheService</resource>
</resources>
<dependencies>
<resolvers>
<resolver type='grailsPlugins' name='grailsPlugins' />
<resolver type='mavenLocal' />
<resolver type='mavenCentral' />
<resolver type='mavenLocal' />
<resolver type='mavenRepo' root='http://m2repo.spockframework.org/snapshots' name='http://m2repo.spockframework.org/snapshots' m2compatbile='true' />
</resolvers>
<dependency group='org.hamcrest' name='hamcrest-all' version='1.1' conf='test' transitive='true' />
<dependency group='net.sf.ehcache' name='ehcache-web' version='2.0.0' conf='compile' transitive='true'>
<excludes group='*' name='ehcache-core' />
</dependency>
<dependency group='org.gmock' name='gmock' version='0.8.0' conf='test' transitive='true'>
<excludes group='*' name='junit' />
</dependency>
</dependencies>
<behavior />
</plugin>