Hi, Alessio...
I configured the other project to include the .java source when creating a JAR.
I then reference that project's JAR file from my GWT project.
I assume then that those sources are in my classpath as I can reference the classes in my project (e.g. when using code-completion). When I check the JAR then those files are definitely there.
But I am kinda stuck on what needs to go into the *.gwt.xml file of the referenced project.
<?xml version="1.0" encoding="UTF-8"?>
<module>
<source path="*** this part***" />
</module>
I've tried the namespace and using a hard-coded direct path, but I get the following error:
"No source code is available for type myproject.MyClass; did you forget to inherit a required module?"
Is there anything else I need to configure? Or am I missing something?
Regards,
Jason.