我试图将文件(由模式指定)移动到Ant macrodef中的给定位置:

<macrodef name="extract">
    <attribute name="package"/>
    <sequential>

        <!-- the path will contain the unique file in extracted regardless of the name -->
        <path id="source_refid">
            <dirset dir="${dep}/lib/@{package}/extracted/">
                <include name="@{package}-*"/>
            </dirset>
        </path>

        <!-- this is not working: properties are immutable -->
        <property name="source_name" refid="source_refid"/>

        <move
            file="${source_name}"
            tofile="${dep}/@{package}/"
            overwrite="true"
        />

    </sequential>
</macrodef>


由于${source_name}是不可变的,因此仅工作一次。

一种选择是使用可变任务,但我没有找到将refid分配给var的方法。

有没有办法在macrodef中具有类似于局部变量的内容?或者(XY问题)是否有更好的方法来解决我的问题?

最佳答案

从Ant 1.8开始,您可以为此使用local task。例如:

<local name="source_name"/>
<property name="source_name" refid="source_refid"/>


您的示例只是local的目的!

09-26 09:37