Re: Getting output from a custom ant task

2006-10-13 Thread Peter Reilly
On 10/13/06, Antoine Levy-Lambert <[EMAIL PROTECTED]> wrote: Hello Hunter, such tasks usually have an attribute to choose the property name that you want to set. getProject().setProperty(name, value) should do. getProject().setNewProperty(name, value) - otherwise the write once property semant

AW: Getting output from a custom ant task

2006-10-12 Thread Jan.Materne
http://ant.apache.org/manual/tutorial-tasks-filesets-properties.html#returning-list Jan >-Ursprüngliche Nachricht- >Von: Antoine Levy-Lambert [mailto:[EMAIL PROTECTED] >Gesendet: Freitag, 13. Oktober 2006 02:16 >An: Ant Users List >Betreff: Re: Getting output from a

Re: Getting output from a custom ant task

2006-10-12 Thread Antoine Levy-Lambert
Hello Hunter, such tasks usually have an attribute to choose the property name that you want to set. getProject().setProperty(name, value) should do. Antoine Hunter Peress wrote: > Hi, Im writing a custom ant task and I want to know how I can return a > string from it back to an ant property. >

Getting output from a custom ant task

2006-10-12 Thread Hunter Peress
Hi, Im writing a custom ant task and I want to know how I can return a string from it back to an ant property.