1
0
mirror of https://github.com/RipMeApp/ripme.git synced 2025-08-06 22:06:48 +02:00

testreport gradle-8 property rename

This commit is contained in:
soloturn
2021-12-30 01:57:47 +01:00
parent 1c85cc89c5
commit 64dbb56c62

View File

@@ -119,9 +119,9 @@ tasks.withType<AbstractArchiveTask>().configureEach {
tasks.jacocoTestReport { tasks.jacocoTestReport {
dependsOn(tasks.test) // tests are required to run before generating the report dependsOn(tasks.test) // tests are required to run before generating the report
reports { reports {
xml.isEnabled = false xml.required.set(false)
csv.isEnabled = false csv.required.set(false)
html.destination = file("${buildDir}/jacocoHtml") html.outputLocation.set(file("${buildDir}/jacocoHtml"))
} }
} }