WIP: feat: NCS-37 Quarkus integration #29

Closed
lq64 wants to merge 13 commits from feat/NCS-37 into main
Showing only changes of commit d59d692381 - Show all commits
+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)
}