我正在使用 ant,我遇到了 if/then/else 任务(ant-contrib-1.0b3.jar)的问题。我正在运行一些可以用下面的 build.xml 简化的东西。
我期待从 'ant -Dgiv=Luke' 获得消息
input name: Luke
should be overwritten with John except for Mark: John
但似乎属性“giv”没有在 if/then/else..
input name: Luke
should be overwritten with John except for Mark: Luke
这取决于我使用 equals 任务的事实${giv}
吗?否则我的代码有什么问题?
build.xml 代码:
<project name="Friend" default="ifthen" basedir=".">
<property name="runningLocation" location="" />
<taskdef resource="net/sf/antcontrib/antcontrib.properties">
<classpath>
<pathelement location="${runningLocation}/antlib/ant-contrib-1.0b3.jar" />
</classpath>
</taskdef>
<target name="ifthen">
<echo message="input name: ${giv}" />
<if>
<equals arg1="${giv}" arg2="Mark" />
<then>
</then>
<else>
<property name="giv" value="John" />
</else>
</if>
<echo message="should be overwritten with John except for Mark: ${giv}" />
</target>
</project>