如何将exec中的条件放在build.xml文件中?

时间:2012-10-08 09:28:58

标签: ant parameters exec build.xml

如何将exec中的条件放入从 Hudson 调用的build.xml文件中?

我只有在发生某些事情时才需要使用 arg (我发送一些参数)并且我需要 if 任务或条件才能解决问题。

1 个答案:

答案 0 :(得分:2)

Ant Contrib库有一个if任务,如下所示:

<if>
<my condition goes here>
<then>
</then>
</if>

在原始Ant中,您使用condition task,如下所示:

<condition property="condition.to.set">
   <my condition goes here>  
</condition>

然后是条件目标:

<target name="mine" if="condition.to.set">

我更喜欢Ant Contrib,因为它更容易阅读。