-
Notifications
You must be signed in to change notification settings - Fork 11
/
plugin.xml
46 lines (46 loc) · 2.25 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
41
42
43
44
45
46
<plugin name='constraints' version='0.7.0' grailsVersion='2.0 > *'>
<author>Geoff Lane</author>
<authorEmail>[email protected]</authorEmail>
<title>Custom domain constraints plugin</title>
<description>
This plugin allows you to create custom domain validations that are applied the same
way as built-in domain constraints.
</description>
<documentation>http://grails.org/plugin/constraints</documentation>
<type>ConstraintsGrailsPlugin</type>
<resources>
<resource>AddressCommand</resource>
<resource>TestController</resource>
<resource>net.zorched.test.Address</resource>
<resource>net.zorched.test.Category</resource>
<resource>net.zorched.test.Compared</resource>
<resource>net.zorched.test.Foo</resource>
<resource>net.zorched.test.InjectedDom</resource>
<resource>net.zorched.test.Login</resource>
<resource>net.zorched.test.Person</resource>
<resource>net.zorched.test.User</resource>
<resource>net.zorched.test.MyTestService</resource>
<resource>net.zorched.constraints.ComparisonConstraint</resource>
<resource>net.zorched.constraints.SsnConstraint</resource>
<resource>net.zorched.constraints.UsPhoneConstraint</resource>
<resource>net.zorched.constraints.UsZipConstraint</resource>
<resource>net.zorched.test.AddressAnno</resource>
<resource>net.zorched.test.BeginsWithConstraint</resource>
<resource>net.zorched.test.CompareConstraint</resource>
<resource>net.zorched.test.InjectedConstraint</resource>
<resource>net.zorched.test.StartsAndEndsWithConstraint</resource>
<resource>net.zorched.test.TwoLongConstraint</resource>
<resource>net.zorched.test.UniqueEgConstraint</resource>
</resources>
<repositories>
<repository name='grailsCentral' url='http://plugins.grails.org' />
<repository name='http://repo.grails.org/grails/plugins' url='http://repo.grails.org/grails/plugins/' />
<repository name='http://repo.grails.org/grails/core' url='http://repo.grails.org/grails/core/' />
<repository name='grailsCore' url='http://svn.codehaus.org/grails/trunk/grails-plugins' />
<repository name='mavenCentral' url='http://repo1.maven.org/maven2/' />
</repositories>
<dependencies />
<plugins />
<runtimePluginRequirements />
<behavior />
</plugin>