Re: Running parallel targets in Ant loop

2009-11-11 Thread Harry_
equential to parallel, i get >>> following error: >>> >>> C:\Eclipse3.1\eclipse\Workspace\AntProject\d6\build.xml:53: Invalid type >>> class org.apache.tools.ant.taskdefs.Parallel used in For task, it does >>> not >>> have a public iterator m

Re: Running parallel targets in Ant loop

2009-11-11 Thread Harry_
oes >> not have a public iterator method >> >> >> Is there any way to achieve what I desire. i.e running parallel targets >> with different value of idx (As sometime I had to run multiple targets >> sometime up to 30). >> > > -- View this message

RE: Running parallel targets in Ant loop

2009-11-11 Thread Wray, Nathan
fy us immediately and then destroy it. From: Harry_ [mailto:harjitwo...@gmail.com] Sent: Tuesday, November 10, 2009 7:46 PM To: user@ant.apache.org Subject: Running parallel targets in Ant loop Hi, I need to run multiple target in Ant's loop. How can I achieve this. I am able to make antcall in

Re: Running parallel targets in Ant loop

2009-11-11 Thread Peter Reilly
chieve what I desire. i.e running parallel targets >> with different value of idx (As sometime I had to run multiple targets >> sometime up to 30). >> > > -- > View this message in context: > http://old.nabble.com/Running-parallel-targets-in-Ant-loop-tp26294167p26298555.h

Re: Running parallel targets in Ant loop

2009-11-11 Thread cvsusr
allel used in For task, it does not > have a public iterator method > > > Is there any way to achieve what I desire. i.e running parallel targets > with different value of idx (As sometime I had to run multiple targets > sometime up to 30). > -- View this message in contex

Running parallel targets in Ant loop

2009-11-10 Thread Harry_
ue of idx (As sometime I had to run multiple targets sometime up to 30). -- View this message in context: http://old.nabble.com/Running-parallel-targets-in-Ant-loop-tp26294167p26294167.html Sent from the Ant - Users mailing list archive at Nabbl

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.

Ant loop

2008-05-21 Thread I am Who i am
Hi All, Is there a way to loop the ant executing on time basis, eg. Lets say i'm doing db and code deployment in parallel, but i want to wait for both to be completed before restarting servers for code deployment. so i thought i would create a flag at the end of db deployment, then at the end of