Chun Ji wrote:
I was trying to compile all the java files under that "/com" directory, but no good. The reason is some of the files under that source tree are not ready for build. That is why I found a way to build files under some subdir.
But since there are some depends, so I have to force some
making a copy. Thank you.
- Original Message -
From: Jeffrey E Care
To: Ant Users List
Sent: Wednesday, July 05, 2006 1:39 PM
Subject: Re: build sub-source tree in the order I specified.
If you configure the task correctly the file order doesn't matter: the
com
ccount/**
"
NOT
"
com/manager/useraccount/**
com/contractor/useraccount/**
com/supplier/useraccount/**
com/users/useraccount/**
"
-CJ
-Original Message-
From: Jeffrey E Care [mailto:[EMAIL PROTECTED]
Sent: Wednesday, July 05, 2006 10:40 AM
To: Ant Users List
Subject: Re: b
If you configure the task correctly
the file order doesn't matter: the compiler will figure out the proper
order.
Jeffrey E. (Jeff) Care
[EMAIL PROTECTED]
IBM WebSphere Application
Server Developm
Hi
I can edit a "list.txt" files as follows
"
com/manager/useraccount/**
com/contractor/useraccount/**
com/supplier/useraccount/**
com/users/useraccount/**
...
"
And put such target in the build.xml
"
"
In that way, the ANT will compile the files under each directory I specified
one