apurva patil
apurva patil

Reputation: 25

GWT program not running

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

Answers (1)

appbootup
appbootup

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 -

  1. Simple Compiling and Debuggig - https://developers.google.com/web-toolkit/doc/latest/DevGuideCompilingAndDebugging

  2. Advanced SuperDevMode - https://developers.google.com/web-toolkit/doc/latest/DevGuideCompilingAndDebugging#SuperDevMode

Upvotes: 1

Related Questions