-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathplugin.xml
39 lines (39 loc) · 1.89 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
<plugin name='i18n-fields' version='0.6.4' grailsVersion='1.3 > *'>
<author>Jorge Uriarte</author>
<authorEmail>[email protected]</authorEmail>
<title>i18n Fields</title>
<description>This plugin provides an easy way of declarativily localize database fields of your content tables.</description>
<documentation>http://grails.org/plugin/i18n-fields</documentation>
<type>I18nFieldsGrailsPlugin</type>
<resources>
<resource>i18nfields.Literal</resource>
</resources>
<repositories>
<repository name='grailsCentral' url='http://grails.org/plugins' />
<repository name='mavenCentral' url='http://repo1.maven.org/maven2/' />
<repository name='http://snapshots.repository.codehaus.org' url='http://snapshots.repository.codehaus.org/' />
<repository name='http://repository.codehaus.org' url='http://repository.codehaus.org/' />
<repository name='http://download.java.net/maven/2/' url='http://download.java.net/maven/2/' />
<repository name='http://repository.jboss.com/maven2/' url='http://repository.jboss.com/maven2/' />
<repository name='http://m2repo.spockframework.org/ext/' url='http://m2repo.spockframework.org/ext/' />
<repository name='http://m2repo.spockframework.org/snapshots/' url='http://m2repo.spockframework.org/snapshots/' />
</repositories>
<dependencies>
<compile>
<dependency group='net.sf.ehcache' name='ehcache-web' version='2.0.3' />
</compile>
<runtime>
<dependency group='mysql' name='mysql-connector-java' version='5.1.8' />
<dependency group='redis.clients' name='jedis' version='2.0.0' />
</runtime>
</dependencies>
<plugins>
<runtime>
<plugin group='org.grails.plugins' name='yammer-metrics' version='0.2-SNAPSHOT' />
</runtime>
</plugins>
<runtimePluginRequirements>
<plugin name='yammerMetrics' version='0.2-SNAPSHOT' />
</runtimePluginRequirements>
<behavior />
</plugin>