Skip to content

Commit

Permalink
Fix JaCoCo report location (#798)
Browse files Browse the repository at this point in the history
This PR fixes the JaCoCo `report.xml` location, which accidentally
was `build))/reports/jacoco`.

PR: #798
  • Loading branch information
jpenilla committed Feb 2, 2024
1 parent b21e7b8 commit 9919bf9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion build.gradle.kts
Expand Up @@ -342,7 +342,7 @@ tasks {
enabled = !experimentalBuild
reports {
xml.required.set(true)
xml.outputLocation.set(file("${layout.buildDirectory}/reports/jacoco/report.xml"))
xml.outputLocation.set(layout.buildDirectory.file("reports/jacoco/report.xml"))
}
}

Expand Down

0 comments on commit 9919bf9

Please sign in to comment.