I have a project that uses gwt and has dependencies to several components in my company's svn. In my MainApp.gwt.xml I inherit those modules. The problem is, that one of those seems not to be a gwt module, so I get this error:
ERROR] BUILD ERROR
[INFO] ------------------------------------------------------------------------
[INFO] GWT Module com.sample.project.sample-module-b not found in project sources or resources.
But I also can't just delete it, since there is another module, that needs sources from this module-b. If I delete the line
<inherits name="com.sample.project.sample-module-b"/>
from my MainApp.gwt.xml I get the following error:
[ERROR] Errors in 'jar:file:/C:/pathToRepository/com/sample/project/sample-module-a/0.1-SNAPSHOT-sources.jar!/com/sample/project/a/to/ClassA.java'
[ERROR] Line 23: No source code is available for type com.sample.project.module-b.ClassB; did you forget to inherit a required module?
I added both module-a and module-b to my maven-dependencies, but that didn't do the trick. Is there any possibility to inherit that module althogh it's not a gwt module? My own classes never use module-b directly, just in this dependency. How do I tell module-a or my MainApp to use sources from module-b without treating it as gwt module? Hopefully anybody kann give me a hint. Best regards, Kayz