Hi Evan,

On 7/17/07, Evan J <[EMAIL PROTECTED]> wrote:

> if (condition)
>  perform some task, i.e. echo message="condition met"
> else
>  perform another task
>
> Is there such task available in Ant 1.7?

This can be accomplished by wrapping the tasks in individual targets
then defining a target that drives the others via depends:
<condition property="condition.is.set">
  <!-- your test hee -->
</condition>
<target name="t1" if="condition.is.set">
  <echo>condition was true</echo>
</target>
<target name="t2" unless="condition.is.set">
  <echo>condition was false</echo>
</target>

<target name="driver" depends="t1,t2">
  <!-- if condition.is.set then t1 is executed else t2 is executed -->
</target>

---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to