Skip to content

Commit

Permalink
* Implement Tiramisu post notification permission.
Browse files Browse the repository at this point in the history
* Remove Timber from UI modules.
* Align with Gradle 8.
  • Loading branch information
Bojan committed Mar 20, 2023
1 parent 9dd499d commit 41220bd
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions jacoco.gradle
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
apply plugin: 'jacoco'

jacoco {
toolVersion = "0.8.7"
toolVersion = "0.8.8"
reportsDirectory.set(file("$buildDir/reports/jacoco"))
}

Expand All @@ -18,12 +18,12 @@ task jacocoTestReport(type: JacocoReport) {
description = "Generate Jacoco coverage reports for both unit and instrumented unit tests"

reports {
csv.enabled false
xml.enabled = true
html.enabled = true
csv.required = false
xml.required = true
html.required = true

xml.setDestination(file("${jacoco.reportsDir}/jacocoTestReport.xml"))
html.setDestination(file("${jacoco.reportsDir}/html"))
xml.outputLocation = file("${jacoco.reportsDirectory}/jacocoTestReport.xml")
html.outputLocation = file("${jacoco.reportsDirectory}/html")
}

def includesFilter = [
Expand Down

0 comments on commit 41220bd

Please sign in to comment.