I have a GWT Project containing some GWT modules that I would like to have NO entry point, functioning as libraries for other modules WITH entry points.
The GWT 'entry point' modules compile fine with the "GWT Compile Project" option in Eclipse if I choose not to compile the GWT 'library' modules with them. They also run fine.
When I choose to deploy my project to the Google App Engine with the "Deploy App Engine Project" option, all modules will get compiled and this process gets stuck on the 'library' modules, since they have no entry point defined.
Is there a way to get around this? I now 'fixed' it by adding a Dummy.java file to the libraries that implement EntryPoint and have an empty onModuleLoad in them.