From 64dbb56c62fdcfdb563f5ffab38abe69474d3418 Mon Sep 17 00:00:00 2001 From: soloturn Date: Thu, 30 Dec 2021 01:57:47 +0100 Subject: [PATCH] testreport gradle-8 property rename --- build.gradle.kts | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/build.gradle.kts b/build.gradle.kts index 78f6b490..d47626a4 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -119,9 +119,9 @@ tasks.withType().configureEach { tasks.jacocoTestReport { dependsOn(tasks.test) // tests are required to run before generating the report reports { - xml.isEnabled = false - csv.isEnabled = false - html.destination = file("${buildDir}/jacocoHtml") + xml.required.set(false) + csv.required.set(false) + html.outputLocation.set(file("${buildDir}/jacocoHtml")) } }