Reputation: 25
When I run my project I get the following error: Could not find or load main class com.google.gwt.dev.GWTShell
I have already installed the google plugin with the sdk's and GWT designer. I am not understanding due to what this error is occuring?
Upvotes: 1
Views: 2803
Reputation: 9537
com.google.gwt.dev.GWTShell
is deprecated and no longer used in later versions of GWT.
com.google.gwt.dev.DevMode
is the one to be used for launch GWT Dev Mode.
References -
Simple Compiling and Debuggig - https://developers.google.com/web-toolkit/doc/latest/DevGuideCompilingAndDebugging
Advanced SuperDevMode - https://developers.google.com/web-toolkit/doc/latest/DevGuideCompilingAndDebugging#SuperDevMode
Upvotes: 1