I imported
http://google-web-toolkit.googlecode.com/svn/trunk/samples/dynatablerf into my eclipse indigo workspace.
Running with `mvn package gwt:run` works fine, after adding the validation api to the pom
<dependency>
<groupId>javax.validation</groupId>
<artifactId>validation-api</artifactId>
<version>
1.0.0.GA</version>
</dependency>
However if I try to run with the gwt plugin in eclipse indigo I got the following Error:
[ERROR] [dynatablerf] - Line 97: No source code is available for type javax.validation.ConstraintViolation<T>; did you forget to inherit a required module?
Am I missing something? Can anyone help?