gpt4 book ai didi

ant - Macrodef 和 "local properties"

转载 作者:行者123 更新时间:2023-12-04 11:28:57 25 4
gpt4 key购买 nike

我正在尝试将文件(由模式指定)移动到 Ant 宏定义中的给定位置:

<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 的方法。 .

有没有办法在宏定义中拥有类似于局部变量的东西?或者(XY 问题)有没有更好的方法来解决我的问题?

最佳答案

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

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

你的例子就是这样的事情 local是为了!

关于ant - Macrodef 和 "local properties",我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8292414/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com