如何在不使用Ant-contrib的情况下模拟Ant中的if-elseif-else?

时间:2013-04-09 21:33:33

标签: ant ant-contrib

我需要在Ant中使用if-elseif-else条件语句。

我不想使用Ant-contrib。

我尝试了解决方案here

    <target name="condition.check">
    <input message="Please enter something: " addproperty="somethingProp"/>
    <condition property="allIsWellBool">
        <not>
            <equals arg1="${somethingProp}" arg2="" trim="true"/>
        </not>
    </condition>
</target>
<target name="if" depends="condition.check, else" if="allIsWellBool">
    <echo message="if condition executes here"/>
</target>
<target name="else" depends="condition.check" unless="allIsWellBool">
    <echo message="else condition executes here"/>
</target>

但我必须在if和else目标中设置属性,这些属性在调用目标中不可见。

还有其他方法可以使用条件吗?

1 个答案:

答案 0 :(得分:4)

将依赖项从ifelse移出到依赖于所有其他目标的新目标中:

<project name="ant-if-else" default="newTarget">
    <target name="newTarget" depends="condition.check, if, else"/>

    <target name="condition.check">
        <input message="Please enter something: " addproperty="somethingProp"/>
        <condition property="allIsWellBool">
            <not>
                <equals arg1="${somethingProp}" arg2="" trim="true"/>
            </not>
        </condition>
    </target>

    <target name="if" if="allIsWellBool">
        <echo message="if condition executes here"/>
    </target>
    <target name="else" unless="allIsWellBool">
        <echo message="else condition executes here"/>
    </target>
</project>