I am using gwt-maven-plugin to manage a GWT project. I use the gwt:run target all the time to gwt:run locally in "dev" mode for testing. Now I want to compile my project into a war for deployment on Tomcat. However, when I run gwt:compile , I get compilation errors indicating a class path configuration problem. Example:
Finding entry point classes [ERROR] Errors in 'shared.MyClass.java' [ERROR] Line 4: The import server.model.MyObject cannot be resolved
Any ideas? Do I need to manually add the server package to some configuration file? Thanks in advance for any information.
-tjw
source share