Reputation: 1179
I am following a tutorial to make a very simple demo app using GWT with eclipse ee. I created a Web Application using steps: select File > New > Web Application Project. From the Eclipse menu, accepted defaults, unchecked use Google App Engine SDK & Generate GWT project sample code. Run it by Debug As > Web Application. It raises this error:
Missing required argument 'module[s]' Google Web Toolkit 2.2.0 .................................................................................................................................................................. and module[s] Specifies the name(s) of the module(s) to host
Upvotes: 2
Views: 1691
Reputation: 411
If you don't want to generate sample code, you have to create the gwt xml module (MyProject.gwt.xml), because eclipse doesn't generate this automatically.
Upvotes: 1