Re: Conditional execution of tasks

2006-08-31 Thread Antoine Levy-Lambert
Hello Charles, you can build a fileset using the different selector which will be the fileset you will copy. Read under concept and types in the manual what is the different selector. Here a possible solution : regards, Antoine Origina

Re: conditional execution

2006-02-22 Thread Paul Pogonyshev
On 21 February 2006 23:52, Anderson, Rob (Global Trade) wrote: > If the existance of a file is your condition, use a combination of > , , > [...] Thanks, I already implemented it using macros and task. Making it the way you suggest would be kinda ugly in my case, since I need to repeat the same

RE: conditional execution

2006-02-21 Thread Anderson, Rob (Global Trade)
If the existance of a file is your condition, use a combination of , , ... ... You could probably do something similar for equal files with the task. -Rob Anderson > -Original Message- > From: Paul Pogonyshev [mailto:[EMAIL PROTECTED] > Sent: Friday, February 17, 2006 7

Re: conditional execution

2006-02-17 Thread Paul Pogonyshev
On 17 February 2006 17:55, Matt Benson wrote: > --- Paul Pogonyshev <[EMAIL PROTECTED]> > wrote: > > > On 17 February 2006 17:07, Burgess, Benjamin wrote: > > > Ant-contrib has an "if" task which you could use. > > > > > > http://ant-contrib.sourceforge.net/ > > > > > > However, the traditional

Re: conditional execution

2006-02-17 Thread Matt Benson
--- Paul Pogonyshev <[EMAIL PROTECTED]> wrote: > On 17 February 2006 17:07, Burgess, Benjamin wrote: > > Ant-contrib has an "if" task which you could use. > > > > http://ant-contrib.sourceforge.net/ > > > > However, the traditional Ant solution is to split > each piece of > > functionality into

Re: conditional execution

2006-02-17 Thread Paul Pogonyshev
On 17 February 2006 17:07, Burgess, Benjamin wrote: > Ant-contrib has an "if" task which you could use. > > http://ant-contrib.sourceforge.net/ > > However, the traditional Ant solution is to split each piece of > functionality into its own target, set properties based on condition, > and use the

RE: conditional execution

2006-02-17 Thread Burgess, Benjamin
Ant-contrib has an "if" task which you could use. http://ant-contrib.sourceforge.net/ However, the traditional Ant solution is to split each piece of functionality into its own target, set properties based on condition, and use the if / unless attributes on the targets. Ben -Original Messag