Public: Add default validators for the standard constraints.
Include super source version of the Pattern constraint
that does not reference java.util.regex.Pattern

Review at http://gwt-code-reviews.appspot.com/735801

Review by: rjrjr@google.com

git-svn-id: https://google-web-toolkit.googlecode.com/svn/trunk@8491 8db76d5a-ed1c-0410-87a9-c151d255dfc7
diff --git a/user/build.xml b/user/build.xml
index 964f1bb..eb8e016 100755
--- a/user/build.xml
+++ b/user/build.xml
@@ -109,7 +109,6 @@
         <pathelement location="${gwt.tools.lib}/junit/junit-3.8.1.jar" />
         <pathelement location="${gwt.tools.lib}/selenium/selenium-java-client-driver.jar" />
         <pathelement location="${gwt.tools}/redist/json/r2_20080312/json-1.5.jar" />
-        <pathelement location="${gwt.tools.lib}/javax/validation/validation-api-1.0.0.GA.jar" />
         <path refid="test.extraclasspath" />
       </classpath>
     </gwt.javac>
@@ -130,7 +129,9 @@
 
   <target name="checkstyle" description="Static analysis of source">
     <gwt.checkstyle>
-      <fileset dir="src" />
+      <fileset dir="src" >
+        <exclude name="javax/validation/super/javax/validation/constraints/Pattern.java"/>
+      </fileset>	
       <fileset dir="super/com/google/gwt/emul" />
       <fileset dir="super/com/google/gwt/junit/translatable" />
     </gwt.checkstyle>