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 c830b143dc
commit d59d692381
+5 -5
View File
@@ -40,9 +40,9 @@ dependencies {
implementation("io.quarkus:quarkus-config-yaml") implementation("io.quarkus:quarkus-config-yaml")
implementation("io.quarkus:quarkus-arc") 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.junit.jupiter:junit-jupiter")
testImplementation("org.scalatest:scalatest_3:${versions["SCALATEST"]!!}") testImplementation("org.scalatest:scalatest_3:${versions["SCALATEST"]!!}")
testImplementation("co.helmethair:scalatest-junit-runner:${versions["SCALATEST_JUNIT"]!!}") testImplementation("co.helmethair:scalatest-junit-runner:${versions["SCALATEST_JUNIT"]!!}")
@@ -77,9 +77,9 @@ tasks.withType<Jar>().configureEach {
tasks.test { tasks.test {
useJUnitPlatform { useJUnitPlatform {
includeEngines("scalatest", "junit-jupiter") includeEngines("scalatest", "junit-jupiter")
testLogging { }
events("passed", "skipped", "failed") testLogging {
} events("passed", "skipped", "failed")
} }
finalizedBy(tasks.reportScoverage) finalizedBy(tasks.reportScoverage)
} }