gpt4 book ai didi

batch-file - 从批处理文件中按顺序运行多个 ant 构建

转载 作者:行者123 更新时间:2023-12-04 22:12:02 27 4
gpt4 key购买 nike

我试图找到一种从命令行顺序运行多个 Ant 构建的方法。我无法直接编辑构建文件。这是我所拥有的:

@echo off
cd c:\my\first\buildfile\dir
ant -buildfile build1.xml target1 target2
cd c:\my\second\buildfile\dir
ant -buildfile build2.xml target1 target2 target3

我希望能够在多个项目中使用类似的东西。但是,它目前只运行第一个构建(它似乎构建了两个目标)但随后停止,并且不会继续下一个。我确信对此的解决方案可能是显而易见的,但这是我第一次从命令行使用 Ant。我通常从 Eclipse 内部运行它。如果可能的话,我将如何从一个批处理文件中运行多个 ant 构建?

最佳答案

您可以尝试以下操作:

@echo off
cd c:\my\first\buildfile\dir
call ant -buildfile build1.xml target1 target2
cd c:\my\second\buildfile\dir
call ant -buildfile build2.xml target1 target2 target3

关于batch-file - 从批处理文件中按顺序运行多个 ant 构建,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/26872076/

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