When running in compiled mode I get this dreaded GWT Module \'mymodule\' may need to be (re)compiled dialog message.
I\'ve compiled a list of the things that others
You have to run mvn gwt:compile
additionally to the usual mvn clean install package
, as the GWT-compilation is NOT part of the maven-package-phase.
This solves the annoying Javascript-(re)compile-error.
My Dev mode was correctly configured and above solution didn't work. Following did solve the issue though.
Multiple steps:
Output should be like this - Linking into target/project-1.0-SNAPSHOT/ModuleName
... and deployment works fine.