From 9919bf97d223d2cf019f94cfd71238227402c8b3 Mon Sep 17 00:00:00 2001 From: Jason Penilla <11360596+jpenilla@users.noreply.github.com> Date: Fri, 2 Feb 2024 15:56:29 -0700 Subject: [PATCH] Fix JaCoCo report location (#798) This PR fixes the JaCoCo `report.xml` location, which accidentally was `build))/reports/jacoco`. PR: #798 --- build.gradle.kts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build.gradle.kts b/build.gradle.kts index 915bd0b6c..f87790c1c 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -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")) } }