RE: How to include multiple source directories in "compile" target

2007-10-05 Thread Bourzeix , Hervé
@ant.apache.org Subject: RE: How to include multiple source directories in "compile" target Hi, Define two more properties like src.java.company.transact = src/java/com/company/transact/ src.java.company.deals = src/java/com/company/deals And include in the target as

RE: How to include multiple source directories in "compile" target

2007-10-05 Thread Sumit.Srivastava
go far, explore first what is near.. -Original Message- From: Alexis Votta [mailto:[EMAIL PROTECTED] Sent: Friday, October 05, 2007 9:20 AM To: user@ant.apache.org Subject: How to include multiple source directories in "compile" target I have a compile target like the

How to include multiple source directories in "compile" target

2007-10-05 Thread Alexis Votta
I have a compile target like the following. In 'build.properties' file, src.dir is defined to be:- src.dir = src/java The problem with this will include all sources under src/java. I want to do something like this:- Compile all sources in (1) "src/java/com/compa