From d822bf6aef5358b465f59bdcedb7b13fec4660f3 Mon Sep 17 00:00:00 2001 From: Alexander Weigl Date: Tue, 30 May 2023 17:38:16 +0200 Subject: [PATCH] fix jacoco for gradle 8 --- scripts/jacocokey.gradle | 13 +++++++++---- 1 file changed, 9 insertions(+), 4 deletions(-) diff --git a/scripts/jacocokey.gradle b/scripts/jacocokey.gradle index c3a96d3366d..ee5a7520dd9 100644 --- a/scripts/jacocokey.gradle +++ b/scripts/jacocokey.gradle @@ -1,7 +1,7 @@ apply plugin: 'jacoco' jacoco { - toolVersion = '0.8.6' + toolVersion = '0.8.8' } subprojects { @@ -9,12 +9,17 @@ subprojects { jacocoTestReport { reports { - html.enabled false - xml.enabled true - csv.enabled false + html.required = false + xml.required = true + csv.required = false } } + test { + finalizedBy jacocoTestReport + } + + testFast { finalizedBy jacocoTestReport jacoco {