How to get Ant task Id?

2003-07-01 Thread Mazzolini, Mike
According to the Ant book, I have, it indicates that Ant generates an Id for each task that it performs. However, I can't seem to get my hands on this Id. I need it to determine what task has actually finished when there is more than one task with the same name. Any ideas? Thanks. ---

RE: Getting the complete build.xml?

2003-06-26 Thread Mazzolini, Mike
interesting about that topic "Transfer the build.xml to the final object tree". Jan > -Ursprüngliche Nachricht- > Von: Mazzolini, Mike [mailto:[EMAIL PROTECTED] > Gesendet am: Mittwoch, 25. Juni 2003 16:31 > An: [EMAIL PROTECTED] > Betreff: Getting the com

RE: Getting the complete build.xml?

2003-06-25 Thread Mazzolini, Mike
Ok. Thanks that helps. Now this leads into another question. The Project.topoSort and Project.getTargets gets me all targets and their tasks but what if someone does an 'antcall' task? How would I go about handling that? It looks like Ant doesn't know anything about this task until it executes

Getting the complete build.xml?

2003-06-25 Thread Mazzolini, Mike
All, When Ant starts, does it parse the entire XML file before running any tasks? In other words does it build a DOM object or does it use SAX? I'm looking to get the entire list of Targets and Tasks for a particular build in order to display them on the web or some other interface. Than