We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents a93b3ac + 311ac6c commit 6203d1aCopy full SHA for 6203d1a
build.gradle.kts
@@ -34,8 +34,11 @@ dependencies {
34
implementation("org.seasar.doma:doma-slf4j:$domaVersion")
35
runtimeOnly("ch.qos.logback:logback-classic:1.5.18")
36
runtimeOnly("com.h2database:h2:1.4.200")
37
- testImplementation("org.junit.jupiter:junit-jupiter-api:5.11.4")
38
- testRuntimeOnly("org.junit.jupiter:junit-jupiter-engine:5.11.4")
+ // Use JUnit BOM for version management
+ testImplementation(platform("org.junit:junit-bom:5.12.2"))
39
+ testImplementation("org.junit.jupiter:junit-jupiter-api")
40
+ testRuntimeOnly("org.junit.jupiter:junit-jupiter-engine")
41
+ testRuntimeOnly("org.junit.platform:junit-platform-launcher")
42
}
43
44
repositories {
0 commit comments