gpt4 book ai didi

gradle - 将多个任务聚集到一个任务中

转载 作者:行者123 更新时间:2023-12-03 03:51:14 24 4
gpt4 key购买 nike

我在gradle项目中使用了以下几个任务:

gradle clean build jacocoTestReport jacocoIntegrationTestReport sonar

如何将这个任务(带有订单)“合并”到一个任务“doFancyStuff”中?

最佳答案

您可以通过设置取决于您的自定义任务并设置每个任务的mustRunAfter参数来实现。像这样:

task doFancyStuff(dependsOn: ['clean', 'build', 'jacocoTestReport', 'jacocoIntegrationTestReport', 'sonar'])
build.mustRunAfter clean
jacocoTestReport.mustRunAfter build
jacocoIntegrationTestReport.mustRunAfter jacocoTestReport
sonar.mustRunAfter jacocoIntegrationTestReport

关于gradle - 将多个任务聚集到一个任务中,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32386075/

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