Re: Repeating a task for a list of directories

2008-03-10 Thread Peter Reilly
The first has a "/" in front of the lib. -> this is an absolute path. Peter On Mon, Mar 10, 2008 at 11:56 AM, Rob Wilson <[EMAIL PROTECTED]> wrote: > I thought I would give some feedback, it seems that I made two mistakes... > > 1) I typed the incorrect version number, so this was why it could n

Re: Repeating a task for a list of directories

2008-03-10 Thread Rob Wilson
I thought I would give some feedback, it seems that I made two mistakes... 1) I typed the incorrect version number, so this was why it could not find the explicitly named jar file. 2) even after fixing the jar name this syntax did not work... (yes I did correct the jar name by this

Re: Repeating a task for a list of directories

2008-03-06 Thread Peter Reilly
---Ursprüngliche Nachricht- > > Von: Rob Wilson [mailto:[EMAIL PROTECTED] > > Gesendet: Donnerstag, 6. März 2008 11:34 > > An: Ant Users List > > Betreff: Re: Repeating a task for a list of directories > > > > > > Thanks for the information, I belie

AW: Repeating a task for a list of directories

2008-03-06 Thread Jan.Materne
cht- > Von: Rob Wilson [mailto:[EMAIL PROTECTED] > Gesendet: Donnerstag, 6. März 2008 11:34 > An: Ant Users List > Betreff: Re: Repeating a task for a list of directories > > Thanks for the information, I believe I need ant-contribs > foreach such that > I can do some proce

Re: Repeating a task for a list of directories

2008-03-06 Thread Rob Wilson
Thanks for the information, I believe I need ant-contribs foreach such that I can do some processing for each subdirectory. I've downloaded the jar file and would prefer not to copy it directly into Ant libs folder, such that the next person to do a svn update can run with it without having to thi

Re: Repeating a task for a list of directories

2008-03-05 Thread Vijay Aravamudhan
hi, if all you are doing is calling a different ant file within each subdirectory - you can look at subant (http://ant.apache.org/manual/CoreTasks/subant.html) If your main build file has a target which you want to repeat for each subdirectory, use ant-contrib's for or foreach tasks (http://

Repeating a task for a list of directories

2008-03-05 Thread Rob Wilson
Hi, I have not done too much with Ant, but I would like to find all sub-directories below a given directory and then for each directory repeat a task in the context of that directory, so for example topdir subdir1 subdir2 I would like to get ant to repeat a task for subdir1 and subdir2 and