RE: Getting my own core task implementation ahead of ant.jar

2005-01-28 Thread Michael Sunde
"Jar" is the ant task that we wanted to modify. Re is this right: Yes Michael -Original Message- From: Ninju Bohra [mailto:[EMAIL PROTECTED] Sent: Friday, January 28, 2005 3:02 PM To: Ant Users List Subject: RE: Getting my own core task implementation ahead of ant.jar Hel

RE: Getting my own core task implementation ahead of ant.jar

2005-01-28 Thread Ninju Bohra
Hello Michael, In your example what do all the "jar" means? I assume that in the task, the my.properties files declares new task (using the my: namespace), while the my.jar contains the implementation. As for the task, are you re-directing the core to use your task and by doing this way (via

RE: Getting my own core task implementation ahead of ant.jar

2005-01-28 Thread Michael Sunde
Hi, In our case we wanted to make an enhancement to one of the existing ant tasks. Here is what we did: - subclassed the existing implementation - Loaded new implementation using taskdef - use presetdef to redirect the standard implementation to our implementation. No need to modify all the exist

Re: Getting my own core task implementation ahead of ant.jar

2005-01-28 Thread Matt Benson
You should be able simply to your own task to the "sql" name, replacing the builtin with your own. -Matt --- Ninju Bohra <[EMAIL PROTECTED]> wrote: > Hello all, > > I am using ANT 1.6.2 on WinXP and Lunix > enviroments... > > I have some issues with the task (defined by > the class org.apa