It may be the version of hibernate validator you are using.
I have the following def in my project POM and it works fine

<dependency>
           <groupId>org.hibernate</groupId>
           <artifactId>hibernate-validator</artifactId>
           <version>4.1.0.Final</version>
           <exclusions>
               <exclusion>
                   <groupId>javax.xml.bind</groupId>
                   <artifactId>jaxb-api</artifactId>
               </exclusion>
               <exclusion>
                   <groupId>com.sun.xml.bind</groupId>
                   <artifactId>jaxb-impl</artifactId>
               </exclusion>
           </exclusions>
       </dependency>
       <dependency>
           <groupId>javax.validation</groupId>
           <artifactId>validation-api</artifactId>
           <version>1.0.0.GA</version>
       </dependency>


Thanks
Ashwin

On Wednesday 07 December 2011 02:31:40 PM IST, Nicolas.Rocca wrote:
Hi Nick,

unfortunately, this doesn't work. With both jars, I get the same
error.
I also wonder why the dependencies-list (http://code.google.com/p/gwt-
validation/wiki/Dependencies) of gwt-validation doesn't mention any
validation framework like hibernate if it is really necessary. Doesn't
gwt-validation provide own client AND server side validators?



--
You received this message because you are subscribed to the Google Groups "Google 
Web Toolkit" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to 
[email protected].
For more options, visit this group at 
http://groups.google.com/group/google-web-toolkit?hl=en.

Reply via email to