This is an automated email from the ASF dual-hosted git repository. paulk pushed a commit to branch GROOVY_4_0_X in repository https://gitbox.apache.org/repos/asf/groovy.git
commit e6129576e14fc1e17517162a28feed7c47463cbb Author: Paul King <[email protected]> AuthorDate: Mon Jun 12 17:32:34 2023 +1000 gradle 8.1.1 adjustment for jacoco plugin --- .../src/main/groovy/org.apache.groovy-jacoco-aggregation.gradle | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/build-logic/src/main/groovy/org.apache.groovy-jacoco-aggregation.gradle b/build-logic/src/main/groovy/org.apache.groovy-jacoco-aggregation.gradle index 0a34cf2a67..22ea0f8509 100644 --- a/build-logic/src/main/groovy/org.apache.groovy-jacoco-aggregation.gradle +++ b/build-logic/src/main/groovy/org.apache.groovy-jacoco-aggregation.gradle @@ -41,9 +41,8 @@ if (sharedConfiguration.hasCodeCoverage.get()) { } reports { - xml.enabled true - - html.enabled true + xml.required = false + csv.required = false } } }
