Request for Help: Migrating GWT 2.8.2 → 2.12.2 (Plugin + Version)We are in the process of migrating our project from GWT 2.8.2 to GWT 2.12.2, including switching from the old Mojo plugin to the new tbroyer gwt-maven-plugin.
Project Structure
With GWT 2.8.2 + Mojo plugin, everything has worked fine for several years.
After configuring the new plugin, we are running into issues.
Main Application Module com.test.Application.gwt.xml
This module inherits third-party JARs that contain both sources and their own .gwt.xml files:
<module> <inherits name="com.thirdparty.T1"/> </module>Third-Party JAR (T1) Structure:
Codesrc/main/java└── com/thirdparty/...└── T1.gwt.xmlContents of T1.gwt.xml:
<module> <source path=""/> </module>ProblemWhen migrating, compilation fails with:
Code[ERROR] Line 40: No source code is availableAttempts so far:
Tried <source path=""/>
Tried <super-source path=""/>
Both approaches fail with the same error.
QuestionHow should we correctly configure the tbroyer gwt-maven-plugin and module definitions so that third-party JARs with embedded sources and .gwt.xml files are properly recognized under GWT 2.12.2?
You received this message because you are subscribed to the Google Groups "GWT Users" group.
To unsubscribe from this group and stop receiving emails from it, send an email to google-web-toolkit+unsubscribe@googlegroups.com.
To view this discussion visit https://groups.google.com/d/msgid/google-web-toolkit/da5d1dc6-cc42-4d10-8071-d91a1124dc98n%40googlegroups.com.
No comments:
Post a Comment