gpt4 book ai didi

依赖于另一个 ant 文件的 ant 文件

转载 作者:行者123 更新时间:2023-12-04 00:50:49 26 4
gpt4 key购买 nike

我有两个项目,每个项目都有自己的 ant 构建文件。

我应该怎么做,当我构建项目 B 时,它会首先使用项目 A 的 antfile 构建项目 A?

最佳答案

您可以通过使用 ant task 来实现这一点。 ,它在外部构建文件上运行 ant。

示例:

<ant antfile="../otherproject/build.xml" target="compile"/>

属性
默认情况下,所有当前属性都传递给调用的 ant 构建,这可以通过设置 inheritAll="false" 来禁用。 ,如果您希望其他构建 native 行为。

需要的属性可以通过嵌套标签传递:
<ant inheritAll="false" antfile="../otherproject/build.xml" target="compile">
<property name="my.property" value="myValue"/>
</ant>

关于依赖于另一个 ant 文件的 ant 文件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9514378/

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