We are using gradle-cobertura-plugin, and have a main project with lots of subprojects, but have to exclude cobertura for some subprojects. Tried using the following:
project('test-modules:functional-tests') {
cobertura {
skip = true
}
}
But gradle complains that
Deprecated dynamic property: "skip" on "net.saliman.gradle.plugin.cobertura.CoberturaExtension_Decorated@6e56dd10", value: "true"
What is the way to skip this subproject?
Thanks,
Paddy