我想在我的 ant build.xml 文件中创建一个条件,如果我将 domainName
属性设置为 Stage
,则将 appbox1URL
属性值设置为 http://10.xxx.xxx.xxx1
并将 appbox2URL 设置为 http://10.xxx.xxx.xxx
。
但是,当我运行 build.xml 文件时,它不会设置 appbox url 值。我做错了什么吗?
<property name="appbox1URL" value=""/>
<property name="appbox2URL" value=""/>
<condition property="appbox1URL" value="http://10.xxxx.xxx.xxx" property="appbox2URL" value="http://10.xxx.xxx.xxx">
<equals arg1="${domainName}" arg2="zzz"/>
</condition>
使用条件任务,但每个条件只能设置一个属性(而不是两个,因为您尝试在 OP 中设置)。
因此,将作业分为两个condition
说明:
<condition property="appbox1URL" value="http://10.202.111.111">
<equals arg1="${domainName}" arg2="Stage"/>
</condition>
<condition property="appbox2URL" value="http://10.202.111.112">
<equals arg1="${domainName}" arg2="Stage"/>
</condition>