I am trying to switch to SuperDevMode in one project and I run into an issue with missing source code.
It's a normal maven2 project configured with m2e in eclipse. It compiles fine when I compile it manually however when I start the codeserver for SuperDevMode I get following error (not using maven but creating a run configuration in eclipse):
[ERROR] Line 113: No source code is available for type javax.validation.ConstraintViolation<T>; did you forget to inherit a required module?
I have the validation-api
1.0.0.GA sources as a maven2 dependency.
The run configuration for the codeserver looks like following:
-src src/main/java/
-src target/generated-sources/annotations/
MyModule
The classpath contains the maven2 dependencies and the project.
Am I missing something here?
thanks in advance
P.S: I had a similar issue with a custom maven dependency. SuperDevMode couldn't find the libraries Module xml (I had the library linked using eclipse m2e's workspace resolutions). It only started to work after I installed the SNAPSHOT version of the library into the local maven repository. Not sure if these issues are related