<foreach> requires that all the tasks to be nested within a <sequential>
element:
<foreach list="v10,v11,v12" param="myVersion">
<sequential>
<antcall target="gen-changes">
<param name="version" value="@{myVersion}"/>
</antcall>
</sequential>
<foreach>
Brian
-----Original Message-----
From: Bill Milbratz [mailto:[EMAIL PROTECTED]
Sent: Thursday, February 07, 2008 10:55 AM
To: [email protected]
Subject: Re: well-defined ant/xslt problem: (how) can I do this?
A follow-up:
I tried the using the ant-contrib for each, and manually specifying the
versions in a list, but came across a limitation:
pe\build-developer.xml:1217: foreach doesn't support the nested "antcall"
element.
(I've implemented the internals for the for-each using antcall);
can anyone comment on limitation of the ant-contrib looping mechanism?
<foreach list="v10,v11,v12" param="myVersion">
<antcall target="gen-changes">
<param name="version" value="@{myVersion}"/>
</antcall>
<foreach>
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]