Skip to content

Commit

Permalink
chore: forward port to new gradle report location API
Browse files Browse the repository at this point in the history
  • Loading branch information
mikehardy committed Nov 1, 2024
1 parent 45891da commit dea6d6d
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions AnkiDroid/jacoco.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,7 @@ def testReport = tasks.register('jacocoTestReport', JacocoReport) {

reports {
xml.required = true
html.destination htmlOutDir
html.outputLocation = htmlOutDir
}

def kotlinClasses = fileTree(dir: project.layout.buildDirectory.dir(classDir), excludes: fileFilter)
Expand Down Expand Up @@ -136,7 +136,7 @@ def unitTestReport = tasks.register('jacocoUnitTestReport', JacocoReport) {

reports {
xml.required = true
html.destination htmlOutDir
html.outputLocation = htmlOutDir
}

def kotlinClasses = fileTree(dir: project.layout.buildDirectory.dir(classDir), excludes: fileFilter)
Expand All @@ -161,7 +161,7 @@ def androidTestReport = tasks.register('jacocoAndroidTestReport', JacocoReport)

reports {
xml.required = true
html.destination htmlOutDir
html.outputLocation = htmlOutDir
}

def kotlinClasses = fileTree(dir: project.layout.buildDirectory.dir(classDir), excludes: fileFilter)
Expand Down

0 comments on commit dea6d6d

Please sign in to comment.