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
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
---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
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
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
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://
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