gpt4 book ai didi

gradle - 如何使用 gradle cobertura 插件排除子项目

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

我们正在使用 gradle-cobertura-plugin ,并且有一个包含很多子项目的主项目,但必须为某些子项目排除 cobertura。尝试使用以下方法:

project('test-modules:functional-tests') {
cobertura {
skip = true
}
}

但是gradle提示说

Deprecated dynamic property: "skip" on "net.saliman.gradle.plugin.cobertura.CoberturaExtension_Decorated@6e56dd10", value: "true"



跳过这个子项目的方法是什么?

谢谢,
稻田

最佳答案

coberbura 配置不知道任何跳过标志,因此您在这里引入了一个新属性,这就是弃用警告试图告诉您的内容。我不知道 Cobertura 插件的详细信息,但是您可以通过设置 enabled=false 来禁用 cobertura 任务

coberturaTask.enabled = false // you have to replace 'coberturaTask' with the correct task name here

干杯,

勒内

关于gradle - 如何使用 gradle cobertura 插件排除子项目,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19572430/

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