gpt4 book ai didi

ant - 如何为 subant 任务指定文件夹列表

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

我需要能够在预先指定的项目文件夹列表上调用子任务,这些文件夹可能是也可能不是 sibling 。

我知道我可以像这样调用 subant 任务:

<subant antfile="custom-build.xml" target="custom-target" 
inheritall="false" failonerror="true">
<filelist dir="${parent.dir}">
<file name="project1"/>
<file name="project2"/>
...
<file name="projectn"/>
</filelist>
</subant>

这很好,如果所有“项目”都是文件系统中的兄弟,但可能并非如此,所以我需要一种方法来通过绝对路径名告诉 subant 文件夹的显式列表以查找 custom-build.xml要执行的文件。

最佳答案

添加更多 文件列表 , 每个路径一个,如下所示:

<subant antfile="custom-build.xml" target="custom-target" 
inheritall="false" failonerror="true">

<filelist dir="${parent.dir}">
<file name="project1"/>
<file name="project2"/>
...
<file name="projectn"/>
</filelist>

<filelist dir="${another.parent.dir}">
<file name="projectA"/>
<file name="projectB"/>
...
<file name="projectZ"/>
</filelist>

</subant>

关于ant - 如何为 subant 任务指定文件夹列表,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/1487349/

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