when I debug my gwt application code using google eclipse plugin via
selected gwt module->debug as->web application,
the generated debug configuration always use com.google.gwt.dev.GWTShell as the main class. This makes my debug failed as GWTShell is a deprecated class (GWT program not running).
Now I have to manually change the main class to com.google.gwt.dev.DevMode in the "debug configurations" again and again whenever I need to debug.
I would like to know how to make google eclipse plugin set the correct main class DevMode automatically.
I am using Eclipse J2EE 4.3.2 Kepler and the gwt sdk is version 2.6.0.
thanks!