--- Mark Lundquist <[EMAIL PROTECTED]> wrote:
>       <target name="modules:build-all">
>               <foreach
>                               list="${modules:modules}"
>                               target="modules.build-module"
>                       param="name"
>                          />
>       </target>

I don't know what version of ant-contrib you are
using, but later versions include the for task which
is a hybrid of foreach and macrodef, whose chief
benefit is that it avoids the incursion of an entirely
new project context, unlike foreach.  Translation:
foreach will be slow and memory-hungry compared to
for.

HTH,
Matt


                
__________________________________ 
Do you Yahoo!? 
The all-new My Yahoo! - Get yours free! 
http://my.yahoo.com 
 


---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to