From c3b3b11470c965f01e676a0d0c7480a65629ba8d Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Fri, 21 Feb 2025 15:40:40 +0000 Subject: [PATCH 1/2] Update org.junit.jupiter to v5.12.0 --- build.gradle.kts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/build.gradle.kts b/build.gradle.kts index 14c6401..1728680 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -41,8 +41,8 @@ subprojects { implementation("org.seasar.doma:doma-slf4j:${domaVersion}") runtimeOnly("ch.qos.logback:logback-classic:1.5.16") runtimeOnly("com.h2database:h2:2.3.232") - testImplementation("org.junit.jupiter:junit-jupiter-api:5.11.4") - testRuntimeOnly("org.junit.jupiter:junit-jupiter-engine:5.11.4") + testImplementation("org.junit.jupiter:junit-jupiter-api:5.12.0") + testRuntimeOnly("org.junit.jupiter:junit-jupiter-engine:5.12.0") } eclipse { From 9ac905809734169ebcb1b14f6af546d590ee996b Mon Sep 17 00:00:00 2001 From: Toshihiro Nakamura Date: Mon, 24 Feb 2025 13:55:25 +0900 Subject: [PATCH 2/2] Update JUnit dependencies to use BOM for version alignment --- build.gradle.kts | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/build.gradle.kts b/build.gradle.kts index 1728680..c587b28 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -41,8 +41,10 @@ subprojects { implementation("org.seasar.doma:doma-slf4j:${domaVersion}") runtimeOnly("ch.qos.logback:logback-classic:1.5.16") runtimeOnly("com.h2database:h2:2.3.232") - testImplementation("org.junit.jupiter:junit-jupiter-api:5.12.0") - testRuntimeOnly("org.junit.jupiter:junit-jupiter-engine:5.12.0") + testImplementation(platform("org.junit:junit-bom:5.12.0")) + testImplementation("org.junit.jupiter:junit-jupiter-api") + testRuntimeOnly("org.junit.jupiter:junit-jupiter-engine") + testRuntimeOnly("org.junit.platform:junit-platform-launcher") } eclipse {