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+ On Oct 22, 6:02 pm, "olivier nouguier" <[EMAIL PROTECTED]> wrote: > 2 points: > * If you've split your source in 2 part you must now have 2 module.gwt.xml, > one (Lib) inheriting of the other (App). > * At gwt compile time the *source* must be found (added) in the classpath. > > > > On Wed, Oct 22, 2008 at 10:26 PM, TomJanssens <[EMAIL PROTECTED]> wrote: > > > Hello all, > > > I am trying to split the client, RPC and server code in different > > eclipse projects. Is this possible? Before I splitted the code it was > > working fine, however after splitting it in multiple projects I get > > the following errors. > > > [TRACE] Removing units with errors > > [ERROR] Errors in 'file:/C:/workspace/grivio-client/src/com/blugri/ > > client/preferencesmodule/PreferencesModule.java' > > [ERROR] Line 10: No source code is available for type > > com.blugri.client.preferencesmodule.PreferencesServiceAsync; did you > > forget to inherit a required module? > > [ERROR] Line 31: No source code is available for type > > com.blugri.client.preferencesmodule.PreferencesService; did you forget > > to inherit a required module? > > > Can anbody tell me what I am forgetting? > > > Another change which I did at the same time was updating gwt, gwt-ext > > and gwt-ext-ux to the latest version. I am also getting this error: > > > [TRACE] Removing units with errors > > [ERROR] Errors in 'jar:file:/C:/workspace/grivio-client/lib/ > > gwtextux.jar!/com/gwtextux/client/widgets/upload/SwfUploadPanel.java' > > [ERROR] Line 81: Cannot reduce the visibility of the inherited method > > from GridPanel > > > Cheers > > Tom > > -- > Si l'ignorance peut servir de consolation, elle n'en est pas moins > illusoire. --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Google Web Toolkit" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [EMAIL PROTECTED] For more options, visit this group at http://groups.google.com/group/Google-Web-Toolkit?hl=en -~----------~----~----~----~------~----~------~--~---
