chore: downgrade junit to 5.11.4

This commit is contained in:
siujamo
2025-04-24 14:53:11 +08:00
parent e3500d0b50
commit 098a2fd4a7
13 changed files with 32 additions and 15 deletions
+6 -1
View File
@@ -55,11 +55,16 @@ dependencies {
compileOnly(libs.slf4j)
implementation(libs.logback)
api(project(":devkit-core"))
testImplementation(libs.junit)
testImplementation(libs.jwt)
testImplementation(platform(libs.junit.bom))
testImplementation(libs.junit.jupiter)
}
tasks.test {
useJUnitPlatform()
testLogging {
events("passed", "skipped", "failed")
}
}
publishing {