In one of your topic, named "output timestamp in ant", i've tested the 2 way explained in order to display several time in the same Ant script.
But, this 2 solutions don't work for me, Ant give me all the time the same date/time.
Anybody can explaine me why ?
I've found a solution (but note very perfet to my mind ) :
<tstamp>
<format property="date.etape1" pattern="dd/MM/yyyy HH:mm:ss" />
</tstamp>
<echo message="${date.etape1} bla bla bla...." />
<tstamp>
<format property="date.etape2" pattern="dd/MM/yyyy HH:mm:ss" />
</tstamp>
<echo message="${date.etape2} bla bla bla...." />
If somebody can explain me how make work one of the 2 solutions of the topic "output timestamp in ant", i would be very happy !!!