On Tue, 6 Nov 2001, Jose Alberto Fernandez <[EMAIL PROTECTED]>
wrote:
> Notice that state also includes the value of properties. so if I
> have:
>
> <property name="a" value="1" />
> <property name="b" value="${a}2" />
>
> I would like to reuse the model in for example a call like:
>
> <antcall ....>
> <param name="a" value="3" />
> </antcall>
>From features.html:
Ant2 will run the build process fully dynamically, which means
that task won't be instantiated before they are actually being run
and <code>${}</code> expansion will see the very latest value of a
property.
So this is supposed to work (even without antcall).
Stefan
--
To unsubscribe, e-mail: <mailto:[EMAIL PROTECTED]>
For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>