Skip to content

Commit 4e1dd31

Browse files
authored
Merge pull request #207 from domaframework/renovate/org.junit.jupiter
Update org.junit.jupiter to v5.12.2
2 parents de61c75 + 6c62a43 commit 4e1dd31

File tree

2 files changed

+13
-5
lines changed

2 files changed

+13
-5
lines changed

codegen-test/build.gradle.kts

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -40,8 +40,12 @@ dependencies {
4040

4141
implementation("org.seasar.doma:doma-core:$domaVersion")
4242
annotationProcessor("org.seasar.doma:doma-processor:$domaVersion")
43-
testImplementation("org.junit.jupiter:junit-jupiter-api:5.11.4")
44-
testRuntimeOnly("org.junit.jupiter:junit-jupiter-engine:5.11.4")
43+
44+
// Use JUnit BOM for version management
45+
testImplementation(platform("org.junit:junit-bom:5.12.2"))
46+
testImplementation("org.junit.jupiter:junit-jupiter-api")
47+
testRuntimeOnly("org.junit.jupiter:junit-jupiter-engine")
48+
testRuntimeOnly("org.junit.platform:junit-platform-launcher")
4549
testRuntimeOnly("com.h2database:h2:$h2Version")
4650
}
4751

codegen/build.gradle.kts

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -52,9 +52,13 @@ repositories {
5252
dependencies {
5353
implementation("org.freemarker:freemarker:2.3.34")
5454
testImplementation("org.seasar.doma:doma-core:3.7.0")
55-
testImplementation("org.junit.jupiter:junit-jupiter-api:5.11.4")
56-
testImplementation("org.junit.jupiter:junit-jupiter-params:5.11.4")
57-
testRuntimeOnly("org.junit.jupiter:junit-jupiter-engine:5.11.4")
55+
56+
// Use JUnit BOM for version management
57+
testImplementation(platform("org.junit:junit-bom:5.12.2"))
58+
testImplementation("org.junit.jupiter:junit-jupiter-api")
59+
testImplementation("org.junit.jupiter:junit-jupiter-params")
60+
testRuntimeOnly("org.junit.jupiter:junit-jupiter-engine")
61+
testRuntimeOnly("org.junit.platform:junit-platform-launcher")
5862
}
5963

6064
tasks {

0 commit comments

Comments
 (0)