Re: BUG? GWT modules inherit: filepath vs classpath

2013-10-28 Thread Vassilis Virvilis
On 10/26/13 12:16, Thomas Broyer wrote: Modules can specify which subpackages contain translatable /source/, causing the named package and its subpackages to be added to the /source path/. Only files found on the source path are candidates to be translated into JavaScript,

Re: BUG? GWT modules inherit: filepath vs classpath

2013-10-28 Thread Thomas Broyer
No, the source path is a subset of the classpath (defined by the source elements in gwt.XML files). It's defined in terms of packages, not file paths. Le 28 oct. 2013 21:03, Vassilis Virvilis vasv...@gmail.com a écrit : On 10/26/13 12:16, Thomas Broyer wrote: Modules can specify which

Re: BUG? GWT modules inherit: filepath vs classpath

2013-10-26 Thread Thomas Broyer
On Friday, October 25, 2013 11:20:50 PM UTC+2, Vassilis Virvilis wrote: Hi everybody, I have the following situation There are 3 projects. Let's call them application_project, library_project, datatype_project. The application_project depends on the other two. However only the

BUG? GWT modules inherit: filepath vs classpath

2013-10-25 Thread Vassilis Virvilis
Hi everybody, I have the following situation There are 3 projects. Let's call them application_project, library_project, datatype_project. The application_project depends on the other two. However only the datatype_project project is supposed to be compiled to javascript. So the there is

Re: BUG? GWT modules inherit: filepath vs classpath

2013-10-25 Thread Jens
Thats expected. The GWT compiler scans it's classpath during compilation and thus it can not have any notion of projects. Change your gwt.xml to source path=datatype / or source path=lib/datatype / depending if you want to relocate your Datatype.gwt.xml to com/company/lib or not. -- J. --