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")) } }