如何将exec中的条件放入从 Hudson 调用的build.xml
文件中?
我只有在发生某些事情时才需要使用 arg (我发送一些参数)并且我需要 if 任务或条件才能解决问题。
答案 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,因为它更容易阅读。