Ant中的Echo目标描述

时间:2010-05-02 19:15:22

标签: java ant

<target name="compile" description="Compile the File">
        <echo>Compile the File </echo>
        <mkdir dir="${compilation-dir}" />
        <javac srcdir="." classpath="another2" destdir="${compilation-dir}" />
    </target>

我想回应目标的描述。除了复制它之外,还有更好的方法吗?

1 个答案:

答案 0 :(得分:3)

我想这不是一个完美的解决方案,但至少你避免重复描述。

<property name="testing.desc" value="this is the desc" />

<target name="testing" description="${testing.desc}">
    <echo message="${testing.desc}" />
</target>