RE: MyVeryOwnTask

2001-10-19 Thread SimonRichardson2
T. > Christine, > > I'll email you directly a task i wrote on accepting a FileSet object. > I'll just remove all the other code first. Can I have a copy of this task? Please? -- Halifax plc, Registered in England No.

Re: MyVeryOwnTask

2001-10-18 Thread T Master
Christine, I'll email you directly a task i wrote on accepting a FileSet object. I'll just remove all the other code first. T Master - Original Message - From: <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Thursday, October 18, 2001 2:20 PM Subject: MyVeryOwnTask > > Hi guys, > >

Re: MyVeryOwnTask

2001-10-18 Thread Matthew Inger
i don't think ant takes very kindly to tasks being in the default package. try putting your task in a package. secondly, use the Task.log method to output information rather than writing directly to the console public void execute() throws BuildException { log(msg, Project.MSG_INFO); } fina

RE: MyVeryOwnTask

2001-10-18 Thread Mark Ayad
There are two parts 1) The class file Which performs the task, once compiled it must appear in the classpath (as the documentation says) 2) The build.xml file which is mapped to the class: Regards Mark -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL

Re: MyVeryOwnTask

2001-10-18 Thread T Master
? - Original Message - From: <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Thursday, October 18, 2001 2:20 PM Subject: MyVeryOwnTask > > Hi guys, > > How do I acutally implement this in a build.xml file? > > - > impo