RE: Custom Task using Groovy

2009-12-08 Thread Murray, Mike
Mike -Original Message- From: Antoine Levy Lambert [mailto:anto...@gmx.de] Sent: Tuesday, December 08, 2009 7:47 AM To: Ant Users List Subject: Re: Custom Task using Groovy Hello Mike, you could define your task using scriptdef. See http://ant.apache.org/manual/OptionalTasks/scriptdef.html Then

Re: Custom Task using Groovy

2009-12-08 Thread Antoine Levy Lambert
Hello Mike, you could define your task using scriptdef. See http://ant.apache.org/manual/OptionalTasks/scriptdef.html Then your groovy class does not need to extend Task. Regards, Antoine Murray, Mike wrote: I've created a groovy class that (indirectly) extends Task, and I'm calling it fro

RE: Custom Task using Groovy

2009-12-03 Thread Murray, Mike
task by my macrodef were never passed. From: Murray, Mike Sent: Tuesday, December 01, 2009 11:45 AM To: user@ant.apache.org Subject: Custom Task using Groovy I've created a groovy class that (indirectly) extends Task, and I'm calling it from my build script, but the property setters ar

Custom Task using Groovy

2009-12-01 Thread Murray, Mike
I've created a groovy class that (indirectly) extends Task, and I'm calling it from my build script, but the property setters are not getting called. I've even explicitly coded the setters, to make sure they are visible to the Ant code. Is there some trick I am missing, or am have I just overl