1
0
mirror of https://github.com/RipMeApp/ripme.git synced 2025-08-18 19:51:35 +02:00

gradle-8.3 deprecations fixed

This commit is contained in:
soloturn
2023-09-30 16:47:11 +02:00
parent 45e6c4a616
commit 9c2404ec26

View File

@@ -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"))
}
}