printing ant target execution time
- by Nirmal Patel
I want to print the execution time taken for each individual ANT target and its dependent targets.
<target name="target1" depends="target2, target3">
....
</target>
When run should show following output
Target 2 - x seconds
Target 3 - y seconds
Target 1 - z seconds
Any suggestions on how to achieve this?