RE: Javac: multiple source roots & filesets

2006-04-26 Thread Wildish, Joe STASCO-OTO/72
to achieve your desired result. Of course, in practice this depends on the complexity of your real project and the flexibility of your build process. Keith -Original Message- From: Wildish, Joe STASCO-OTO/72 [mailto:[EMAIL PROTECTED] Sent: 26 April 2006 13:38 To: Ant Users List Subj

RE: Javac: multiple source roots & filesets

2006-04-26 Thread Wildish, Joe STASCO-OTO/72
ers List Subject: Re: Javac: multiple source roots & filesets Wildish, Joe STASCO-OTO/72 wrote: > java root_a/One.java root_b/Two.java root_b/Three.java > > javac handles this OK (ie. it is not privy to root_a/Two.java, so does not > attempt to compile it). Like I warned, this i

RE: Javac: multiple source roots & filesets

2006-04-26 Thread Wildish, Joe STASCO-OTO/72
Hi Steve, Thanks for the suggestion; however, the "src" attribute is a path-like structure, and as such you cannot use include or exclude elements (hence trying to use the filesets in the first example). It would seem that the javac task is taking directories specified by the "src" attribute,

Javac: multiple source roots & filesets

2006-04-26 Thread Wildish, Joe STASCO-OTO/72
All, New to the list, not new to ANT. Am using v1.6.5. I've had a scan through the archives of this list but I can't find an answer to my question.. so here goes: I have two source roots, root_a and root_b. Beneath those directories are some source files, some of which are for the same class. e