As I said before, <for> is part of AntContrib. http://ant.apache.org/projects.html#antcontrib
Jan > -----Ursprüngliche Nachricht----- > Von: Deepthi Ramachandran Nair [mailto:[EMAIL PROTECTED] > Gesendet am: Donnerstag, 22. Juli 2004 13:53 > An: Ant Users List > Betreff: RE: Entering more than one value through Input task > > I made changes in my make file as follows - > > <target name = "Input_component_name" > > <input message = "Enter the make file to be executed" > addproperty = "MAKE_FILE_NAMES" /> > > </target> > > > <target name = "Build" depends = "Input_component_name" > > <for param = "num" > list = "${MAKE_FILE_NAMES}" > delimiter = "," > > <sequential> > <ant antfile = "@num" /> > </sequential> > </for> > > </target> > > I am pretty new to ANT so I am still just getting the hang of it. I > tried executing the above file and I received the error that ANT could > not create a task of type "for" as ANT could not find a task > or a class > this task relies on. > > What should I be doing now ? > > Regards, > Deepthi R. Nair > > > > --------------------------------------------------------------------- > To unsubscribe, e-mail: [EMAIL PROTECTED] > For additional commands, e-mail: [EMAIL PROTECTED] >