diff --git a/build.gradle.kts b/build.gradle.kts index 8029ec54..aee5440f 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -29,8 +29,9 @@ dependencies { implementation("org.apache.logging.log4j:log4j-api:2.20.0") implementation("org.apache.logging.log4j:log4j-core:2.20.0") implementation("org.graalvm.js:js:22.3.2") - testImplementation(enforcedPlatform("org.junit:junit-bom:5.9.3")) + testImplementation(enforcedPlatform("org.junit:junit-bom:5.10.0")) testImplementation("org.junit.jupiter:junit-jupiter") + testRuntimeOnly("org.junit.platform:junit-platform-launcher") } group = "com.rarchives.ripme" @@ -128,7 +129,7 @@ tasks.jacocoTestReport { reports { xml.required.set(false) csv.required.set(false) - html.outputLocation.set(file("${buildDir}/jacocoHtml")) + html.outputLocation.set(file("${layout.buildDirectory}/jacocoHtml")) } }