RE: Looping in Ant

2005-12-06 Thread Fintan Hynes
EMAIL PROTECTED] Sent: 06 December 2005 16:28 To: Ant Users List Subject: Re: Looping in Ant I wouldn't suggest antcontrib. Instead I'd look at setting up the properties specific to each generation run and then use a task like subant or something with a fileset to execute the bui

Re: Looping in Ant

2005-12-06 Thread Clifton Craig
> From: Mark Eramo [mailto:[EMAIL PROTECTED] > Sent: Monday, December 05, 2005 2:59 PM > To: Ant Users List > Subject: Looping in Ant > > > Hello, >Does anyone have experience running loops with Ant or if it is even > possible? > > What I need to do is run an

RE: Looping in Ant

2005-12-05 Thread Fintan Hynes
You can use the ant-contrib task... http://ant-contrib.sourceforge.net/tasks/tasks/index.html Fintan -Original Message- From: Mark Eramo [mailto:[EMAIL PROTECTED] Sent: Monday, December 05, 2005 2:59 PM To: Ant Users List Subject: Looping in Ant Hello, Does anyone have experience

RE: Looping in Ant

2005-12-05 Thread Cena, Bernard \(IT\)
Mark Eramo wrote: > Hello, >Does anyone have experience running loops with Ant or if it is > even possible? Can leverage custom tasks from ant-contrib. HTH Bernard > What I need to do is run an xdoclet task 10 times to produce 10 > different MDB's to support some Queue work the developers ar

Looping in Ant

2005-12-05 Thread Mark Eramo
Hello, Does anyone have experience running loops with Ant or if it is even possible? What I need to do is run an xdoclet task 10 times to produce 10 different MDB's to support some Queue work the developers are doing. Each MDB will have a different suffix Q_0 - Q_9. I know I could simply

Re: While Looping in ANT

2005-07-23 Thread David A. Bartmess
You can use the "waitfor" task to wait until the specific property has been set, it can use the "if" condition... From the manual: Blocks execution until a set of specified conditions become true. This is intended to be used with the parall

Re: While Looping in ANT

2005-07-23 Thread Juergen Hermann
On Fri, 22 Jul 2005 21:11:48 -0700, Jacob, Anil - MWL wrote: >Does anyone know how I implement a loop similar to a while loop? > I want to keep checking to see if a particular property is set in a >target, once that target is executed it can be a while before the >property is finally set, then o

Re: While Looping in ANT

2005-07-22 Thread Ivan Ivanov
Hello Jacob, I am not quite sure I understand what do you mean. --- "Jacob, Anil - MWL" <[EMAIL PROTECTED]> wrote: > > Does anyone know how I implement a loop similar to a > while loop? Generally, ant-contrib[1] provides looping tasks like and . > > I want to keep checking to see if a partic

While Looping in ANT

2005-07-22 Thread Jacob, Anil - MWL
Does anyone know how I implement a loop similar to a while loop? I want to keep checking to see if a particular property is set in a target, once that target is executed it can be a while before the property is finally set, then once the property is set I can execute another target. I would like