I am using the gwt-maven-plugin Maven2 gwt-maven-plugin to compile my code. I migrated the code from the old version of the maven-googlewebtoolkit2-plugin . For the old plugin, I had to specify which modules were such entry points:
<compileTargets> <param>com.project.module.Module</param> </compileTargets>
For the new plugin, he
<module>com.project.module.Module</module>
Since the plugin could not find which modules to compile, it searches for "* .gwt.xml" and compiles them all into "UI modules" (which must have an entry point).
Aaron digulla
source share