forked from geofflane/grails-constraints
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathplugin.xml
More file actions
30 lines (30 loc) · 1.39 KB
/
plugin.xml
File metadata and controls
30 lines (30 loc) · 1.39 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
29
30
<plugin name='constraints' version='0.1' grailsVersion='1.1.1 > *'>
<author>Geoff Lane</author>
<authorEmail>geoff@zorched.net</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/GrailsConstraints+Plugin</documentation>
<resources>
<resource>DataSource</resource>
<resource>UrlMappings</resource>
<resource>TestController</resource>
<resource>net.zorched.test.Address</resource>
<resource>net.zorched.test.Category</resource>
<resource>net.zorched.test.Foo</resource>
<resource>net.zorched.test.Login</resource>
<resource>net.zorched.test.Person</resource>
<resource>net.zorched.test.User</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.BeginsWithConstraint</resource>
<resource>net.zorched.test.StartsAndEndsWithConstraint</resource>
<resource>net.zorched.test.TwoLongConstraint</resource>
<resource>net.zorched.test.UniqueEgConstraint</resource>
</resources>
<dependencies />
</plugin>