Imagine this as the code from build.xml:
<project name="test project">
<target name="first">
<echo>first</echo>
</target>
<target name="second" depends="first">
<echo>second</echo>
</target>
<target name="third" depends="first,second">
<echo>third</echo>
</target>
</project>
What do I need to do so that when I run:
ant third
I would receive the following output:
first,first,second,third
In other words, I would like each dependency to run regardless of whether it has ran before or not.