gpt4 book ai didi

Ant 条件导入

转载 作者:行者123 更新时间:2023-12-02 02:32:45 25 4
gpt4 key购买 nike

如果设置了属性,是否可以在 ant 的 build.xml 中导入文件,如果没有,则不要导入它。

除了使用 ant-contrib if 任务之外,还有其他方法吗?

谢谢

最佳答案

是的,你可以。例如:

<target name="importFile" depends="myProperty.check" if="myPropertyIsSet">
<echo>Import my file here</echo>
</target>

<target name="myTarget.check">
<condition property="myPropertyIsSet">
<and>
<!-- Conditions to check if my property is set. -->
</and>
</condition>
</target>

Apache Ant Manual 中描述了可用条件.

关于 Ant 条件导入,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3094723/

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