fix: use version catalog keys for jackson-scala and junit-bom in backcore

This commit is contained in:
LQ63
2026-04-13 15:37:47 +02:00
parent 15904d4545
commit e3c1e9b76d
+5 -5
View File
@@ -40,9 +40,9 @@ dependencies {
implementation("io.quarkus:quarkus-config-yaml")
implementation("io.quarkus:quarkus-arc")
implementation("com.fasterxml.jackson.module:jackson-module-scala_3:2.18.0")
implementation("com.fasterxml.jackson.module:jackson-module-scala_3:${versions["JACKSON_SCALA"]!!}")
testImplementation(platform("org.junit:junit-bom:5.13.4"))
testImplementation(platform("org.junit:junit-bom:${versions["JUNIT_BOM"]!!}"))
testImplementation("org.junit.jupiter:junit-jupiter")
testImplementation("org.scalatest:scalatest_3:${versions["SCALATEST"]!!}")
testImplementation("co.helmethair:scalatest-junit-runner:${versions["SCALATEST_JUNIT"]!!}")
@@ -77,9 +77,9 @@ tasks.withType<Jar>().configureEach {
tasks.test {
useJUnitPlatform {
includeEngines("scalatest", "junit-jupiter")
testLogging {
events("passed", "skipped", "failed")
}
}
testLogging {
events("passed", "skipped", "failed")
}
finalizedBy(tasks.reportScoverage)
}