RE: Ant loop

2008-05-22 Thread Barry Pape
Maybe the task is what you want: http://ant.apache.org/manual/index.html -Original Message- From: I am Who i am [mailto:[EMAIL PROTECTED] Sent: Thursday, May 22, 2008 9:31 AM To: Ant Users List Subject: Re: Ant loop Thanks for answering, may be i was not clear on my question,,, i

Re: Ant loop

2008-05-22 Thread I am Who i am
Thanks for answering, may be i was not clear on my question,,, i actually i have all these like running db and code deploy to run it parallel, but most of the time, my db deploy would take more than code deploy, so i want to wait db deploy to complete. for this i will create dbcompleted flag at the

Re: Ant loop

2008-05-21 Thread David Weintraub
Sounds like what you REALLY want to do is the task. This allows you to specify multiple tasks that can take place at the same time. The task will wait for each to complete before continuing. There's no need for a flag or a loop.