我有一个 Ant 构建文件,它在文件顶部导入以下内容:
<project name="..." ...>
<property file="build.properties"/>
...
在项目根目录中,我有两个属性文件:build.properties
和special-config.properties
. 我正在定义一个需要从中读取以下属性的目标special-config.properties
:
总是问=真
所以目标需要是这样的(请记住,build.properties
在这个目标执行之前很久就已经设置为属性文件):
<target name="exec-special-logic">
<!-- Somehow read special-config.properties#always.ask and set it to a local variable... -->
</target>
但我确信如何加载第二个属性文件并使其属性(例如always.ask
)对 Ant 可用。提前致谢。