diff options
| author | Fabian Mastenbroek <mail.fabianm@gmail.com> | 2021-06-17 14:33:56 +0200 |
|---|---|---|
| committer | Fabian Mastenbroek <mail.fabianm@gmail.com> | 2021-06-17 14:33:56 +0200 |
| commit | 5649bdc3fe77b40a112d8478460aab30ee08de58 (patch) | |
| tree | db176a49e63814a4338e978f940897808bfc6016 /buildSrc/src/main/kotlin/jacoco-aggregation.gradle.kts | |
| parent | 0fd7b3116fbace7deb8202d1849cece7146462a9 (diff) | |
build: Update dependencies
This change updates the project dependencies to follow the latest
available version where possible.
Diffstat (limited to 'buildSrc/src/main/kotlin/jacoco-aggregation.gradle.kts')
| -rw-r--r-- | buildSrc/src/main/kotlin/jacoco-aggregation.gradle.kts | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/buildSrc/src/main/kotlin/jacoco-aggregation.gradle.kts b/buildSrc/src/main/kotlin/jacoco-aggregation.gradle.kts index d6bbd2b4..5afd3e0d 100644 --- a/buildSrc/src/main/kotlin/jacoco-aggregation.gradle.kts +++ b/buildSrc/src/main/kotlin/jacoco-aggregation.gradle.kts @@ -35,10 +35,10 @@ tasks.register<JacocoReport>("codeCoverageReport") { description = "Generates an aggregate report based on all subprojects" reports { - xml.isEnabled = true - xml.destination = file("${buildDir}/reports/jacoco/report.xml") + xml.required.set(true) + xml.outputLocation.set(file("${buildDir}/reports/jacoco/report.xml")) - html.isEnabled = true + html.required.set(true) } subprojects { |
