OK, so after a bit of a battle, I can get Dev Mode to run under 2.7, which now of course launches Super Dev Mode
I needed to change some things though. Our original launch command looked like this: ava -cp "*%TAS_HOME%/proj/webui/src/com/ascert/webui/vt*; > *%TAS_HOME%/proj/tas/gwtapi/src/com/ascert/tas/gwtapi*; > *%TAS_HOME%/proj/tas/gwtapi/src*;*%TAS_HOME%/proj/webui/src*;%TAS_HOME%/build/ext/gwt-user.jar;%TAS_HOME%/proj/webui/lib/gwt-servlet-deps.jar;%TAS_HOME%/build/ext/gwt-dev.jar;%TAS_HOME%/build/ext/validation-api-1.0.0.GA-sources.jar;%TAS_HOME%/build/ext/gwtext.jar;%TAS_HOME%/build/ext/gwtextux.jar;%TAS_HOME%/build/ext/highcharts.jar;%TAS_HOME%/build/ext/gxt.jar;%TAS_HOME%/build/ext/gxt-chart.jar;%TAS_HOME%/build/ext/gxt-legacy.jar" > > com.google.gwt.dev.DevMode -noserver -startupUrl > http://localhost:8084/VtWebUi/VtWebUi.html* GwtApiTas VtWebUi * > I forget why, but we needed paths to both the GWT XML and the sources separately. SDM under 2.7 does not like this, instead we needed to fully qualify our GWT XML with package names, and remove the path entry to them. In fact one module wasn't even on our original command which Dev Modes did not complain about (presumably because it was in same source path as main module) java -cp "*%TAS_HOME%/proj/tas/gwtapi/src*;*%TAS_HOME%/proj/webui/src*;%TAS_HOME%/build/ext/gwt-user.jar;%TAS_HOME%/proj/webui/lib/gwt-servlet-deps.jar;%TAS_HOME%/build/ext/gwt-dev.jar;%TAS_HOME%/build/ext/validation-api-1.0.0.GA-sources.jar;%TAS_HOME%/build/ext/gwtext.jar;%TAS_HOME%/build/ext/gwtextux.jar;%TAS_HOME%/build/ext/highcharts.jar;%TAS_HOME%/build/ext/gxt.jar;%TAS_HOME%/build/ext/gxt-chart.jar;%TAS_HOME%/build/ext/gxt-legacy.jar" > com.google.gwt.dev.DevMode -nostartServer -logLevel TRACE -startupUrl > http://localhost:8084/VtWebUi/VtWebUi.html > *com.ascert.tas.gwtapi.GwtApiTas* *com.ascert.webui.core.GwtComponents* > *com.ascert.webui.vt.VtWebUi* > This removed the 600+ sources with errors, but we still hit an error with one of our sub-module missing an inhertis: When we compile GWT normally, we don't see this error - presumably because that module is inherited by our main module. Not sure yet if this is fully working, but it is at least launching into Super Dev Mode via the Dev Mode command line -- You received this message because you are subscribed to the Google Groups "GWT Contributors" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To view this discussion on the web visit https://groups.google.com/d/msgid/google-web-toolkit-contributors/94f3573f-4aaf-427c-9bdc-b1cd86198cd5%40googlegroups.com. For more options, visit https://groups.google.com/d/optout.
