Re: Java source files not part of any package

2009-10-28 Thread Dianne Yumul
Another option would be going back to running javac twice but with the includes in the appropriate place: This way it compiles only what I need from the Common folder and everything from the project's src folder. Is there a disadvantage to doing it th

Re: Java source files not part of any package

2009-10-28 Thread Dianne Yumul
Thank you Steve for the suggestions. I tried option 2 with the following: classpathref="lib.path" debug="${compile.debug}"> But I get the error /Common/AuthWindow.java is not a directory. Going back to the manual and some more searching. Than

Re: Java source files not part of any package

2009-10-28 Thread Steve Loughran
Dianne Yumul wrote: Hello Everyone, I'm learning to use Ant 1.7.0 as part of Xcode 3.1.2 on Mac OS X 10.6. We have a separate directory called Common/ where we keep common java source files. These files need to get included, not all at the same time though, when compiling our Java applicatio

Re: Java source files not part of any package

2009-10-27 Thread Dianne Yumul
: Look at the include / exclude parameter options Chris Sent using BlackBerry® from Orange -Original Message- From: Dianne Yumul Date: Tue, 27 Oct 2009 13:31:24 To: Subject: Java source files not part of any package Hello Everyone, I'm learning to use Ant 1.7.0 as part of Xc

Re: Java source files not part of any package

2009-10-27 Thread chris . green100
Look at the include / exclude parameter options Chris Sent using BlackBerry® from Orange -Original Message- From: Dianne Yumul Date: Tue, 27 Oct 2009 13:31:24 To: Subject: Java source files not part of any package Hello Everyone, I'm learning to use Ant 1.7.0 as part of Xcode

Java source files not part of any package

2009-10-27 Thread Dianne Yumul
Hello Everyone, I'm learning to use Ant 1.7.0 as part of Xcode 3.1.2 on Mac OS X 10.6. We have a separate directory called Common/ where we keep common java source files. These files need to get included, not all at the same time though, when compiling our Java applications. What would