Re: errors with inherited own module

2008-11-17 Thread pepgrifell
We are moving an existing project to GWT and the project has a lot of sub-projects (JAR's) that use these classes. If I change the package to be unique, I will have to change lots of classes that were using classes in Keys.jar !!! On 14 nov, 14:13, gregor [EMAIL PROTECTED] wrote: Hi Pepgrifell,

errors with inherited own module

2008-11-14 Thread pepgrifell
hi, In my gwt.xml file I inherit a module I created with GWT compatible code. Let´s say, the inherited module is: aaa.bbb.ccc aaa.bbb.ccc.Keys.gwt.xml aaa.bbb.ccc.ddd.SomeKeys.java and Keys.gwt.xml: module source path=ddd include name=**/*.java/ /source /module Classes in this

Re: errors with inherited own module

2008-11-14 Thread gregor
Hi Pepgrifell, I have read an old post saying that compiler is not trying to find classes from Keys.jar?aaa.bbb.ccc.ddd but finding classes of package aaa.bbb.ccc.ddd in all claspath. AFAIK that is correct. I think you need to use a unique package name for your shared GWT compatible