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

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

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

最佳答案
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,因为它更容易阅读.

点赞