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
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
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
:
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
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
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