gpt4 book ai didi

java - 在 exec 任务中执行 ant 文件

转载 作者:行者123 更新时间:2023-12-01 11:33:27 25 4
gpt4 key购买 nike

我想在并行执行任务的同时运行我的 ant,即 build.xml 文件。我正在使用 Exec 任务来实现这一目标。即我使用 ant 在 Exec 任务中运行 build.xml 文件,但面临以下错误:错误:exec 不支持嵌套的“ant”元素。

我的代码摘录是:

<if>
<istrue value="${parallel.exec}" />
<then>

<!-- Parallel execution of task -->
<mkdir dir="${buildroot.dir}/product/${build-log.dir}" />
<exec dir="../../apollo" executable="/bin/sh" spawn="true">
<ant antfile="${buildroot.dir}/product/abs-build.xml" />
</exec>
</then>

最佳答案

我们会,<exec>只是不支持任意任务作为嵌套元素,正如手册页所列出的那样。

为了运行 Ant,你可以使用类似的东西

<exec dir="../../apollo" executable="/bin/sh" spawn="true">
<arg value="${ant.home}/bin/ant"/>
<arg value="-f"/>
<arg file="${buildroot.dir}/product/abs-build.xml" />
</exec>

关于java - 在 exec 任务中执行 ant 文件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30231270/

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