If you have all project in the same workspace, and you are dividing it
only for convenience and not for reusability in other application, you
may not need to have many *.gwt.xml file.
Modify your *-compile.cmd file as follow:
@java -cp "%~dp0\src;%~dp0\..\app-common\src;%~dp0\..\app-rpc\src;C:/
usr/local/java/gwt-windows-1.4.61/gwt-user.jar;C:/usr/local/java/gwt-
windows-1.4.61/gwt-dev-windows.jar" com.google.gwt.dev.GWTCompiler -
out "%~dp0\www" %* com.bk.GWTPOC
GWTPOC is name of my gwt module and app-common, app-rpc are the name
of folder of relavent project.
+Bakul+