Le Friday 19 December 2008 14:15:21 sactiw, vous avez écrit :
> Hi Guys,
> I really sometimes feel that <echo> task must should support the
> "if" and "unless" attribute.
>
> So that I could write something like,
>
> <echo if="thisPropertyExists">This Property Exists</echo>
>
> <echo unless="thisPropertyDon'tExists">This Property Don't
> Exists</echo>
>
> I think this is a very usefull feature and many people will find
> it very useful.
>
> Thanks and Regards,
> Sachin.
You could always use ant-contrib's <if>:
<if>
<available property="theproperty"/>
<then>
<echo message="theproperty exists and is set"/>
</then>
</if>
OK, it's longer to write, but it works.
--
Francis Galiegue
[email protected]
Ingénieur système
Mob : +33 (0) 683 877 875
Tel : +33 (0) 178 945 552
One2team
40 avenue Raymond Poincaré
75116 Paris
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]