Re: splitting client, RPC and server in different eclipse projects?

2008-10-24 Thread Bakulkumar
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:/

Re: splitting client, RPC and server in different eclipse projects?

2008-10-23 Thread Tom Janssens
http://groups.google.com/group/Google-Web-Toolkit/browse_thread/thread/887677fd133b5e0b On 22/10/2008, 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

Re: splitting client, RPC and server in different eclipse projects?

2008-10-23 Thread walden
a third point: * If you change everything at once, then it's polynomially harder to figure out which change(s) caused the failure 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)

splitting client, RPC and server in different eclipse projects?

2008-10-22 Thread TomJanssens
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

Re: splitting client, RPC and server in different eclipse projects?

2008-10-22 Thread olivier nouguier
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