Ant: foreach loop
Posted
by user305801
on Stack Overflow
See other posts from Stack Overflow
or by user305801
Published on 2010-04-09T16:01:09Z
Indexed on
2010/04/09
16:03 UTC
Read the original article
Hit count: 319
I'm trying to use the foreach loop in an Ant script but I get the message: Problem: failed to create task or type foreach Cause: The name is undefined.
I don't understand why this doesn't work. It is not a 3rd party library. It is a standard task that would be part of the latest version of Ant (1.8).
<target name="parse">
<echo message="The first five letters of the alphabet are:"/>
<foreach param="instance" list="a,b,c,d,e">
</foreach>
</target>
© Stack Overflow or respective owner