Hi Ant dev,
I found Ant can't run a target multiple times, a small example is
followed, could you please hint me how to make it work??
Source Code:
<project name="11" default="all" basedir=".">
<target name="all" depends="aaaa, bbbb, aaaa, bbbb" />
<target name="aaaa">
<echo message="aaaaa" />
</target>
<target name="bbbb">
<echo message="bbbbb" />
</target>
</project>
Output:
Buildfile: D:\test.xml
aaaa:
[echo] aaaaa
bbbb:
[echo] bbbbb
all:
BUILD SUCCESSFUL
Total time: 234 milliseconds
What I am expecting is that both "aaaaa" and "bbbbb" should shown twice,
how can I achieve this?
Looking forward for your reply,
Thanks
Vincent