13

在 ant 中,我有一个宏定义。

假设我必须使用这个宏定义,并且如果该属性存在并且为真,那么我想在所说的宏定义中运行一个项目,我该special.property怎么办?

我目前有

<macrodef name="someName">
    <sequential>
        <someMacroDefThatSetsTheProerty  />
        <some:thingHereThatDependsOn if="special.property" />
    <sequential>
</macrodef>

哪个不起作用 - some:thingHereThatDependsOn 没有“if”属性,我无法添加一个。

antcontrib 不可用。

有了目标,我可以给目标一个“如果”,我可以用宏定义做什么?

4

2 回答 2

18

在 Ant 1.9.1 及更高版本中,现在有了ifunless 属性的新实现。这可能是你正在考虑的。

首先,您需要将它们放入您的命名空间。将它们添加到您的<project>标题中:

<project name="myproject" basedir="." default="package"
    xmlns:if="ant:if"
    xmlns:unless="ant:unless">

现在,您可以将它们添加到几乎任何 Ant 任务或子实体中:

<!-- Copy over files from special directory, but only if it exists -->
<available property="special.dir.available"
    file="${special.dir} type="dir"/>

<copy todir="${target.dir}>
    <fileset dir="${special.dir}" if:true="special.dir.available"/>
    <fileset dir="${other.dir}"/>
</copy>

<!-- FTP files over to host, but only if it's on line-->
<condition property="ftp.available">
    <isreachable host="${ftp.host}"/>
</condition>

<ftp server="${ftp.host}" 
    userid="${userid}"
    passowrd="${password}"
    if:true="ftp.available">
    <fileset dir=".../>
</ftp>
于 2013-08-14T22:20:02.617 回答
7

这只有在 ANT "thingHereThatDependsOn" 任务支持 "if" 属性时才有可能。

如上所述,ANT 中的条件执行通常只适用于目标。

<target name="doSomething" if="allowed.to.do.something">
   ..
   ..
</target>

<target name="doSomethingElse" unless="allowed.to.do.something">
   ..
   ..
</target>

<target name="go" depends="doSomething,doSomethingElse"/>
于 2013-08-14T17:58:57.603 回答