From c54952c107bc87511b4b809dae867a89b27df345 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Sat, 4 Oct 2025 04:01:47 +0000 Subject: [PATCH] chore(deps): bump org.junit.jupiter:junit-jupiter-engine Bumps [org.junit.jupiter:junit-jupiter-engine](https://github.com/junit-team/junit-framework) from 5.10.0 to 6.0.0. - [Release notes](https://github.com/junit-team/junit-framework/releases) - [Commits](https://github.com/junit-team/junit-framework/compare/r5.10.0...r6.0.0) --- updated-dependencies: - dependency-name: org.junit.jupiter:junit-jupiter-engine dependency-version: 6.0.0 dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- sample-jpa-multiproject/domain/build.gradle | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/sample-jpa-multiproject/domain/build.gradle b/sample-jpa-multiproject/domain/build.gradle index 4d9c6415..8e1d2737 100644 --- a/sample-jpa-multiproject/domain/build.gradle +++ b/sample-jpa-multiproject/domain/build.gradle @@ -13,8 +13,8 @@ dependencies { implementation project(':sample-jpa-multiproject:common') implementation 'org.datanucleus:datanucleus-accessplatform-jpa-rdbms:6.0.5' implementation 'com.h2database:h2:2.2.224' - testImplementation "org.junit.jupiter:junit-jupiter-api:5.10.0" - testRuntimeOnly "org.junit.jupiter:junit-jupiter-engine:5.10.0" + testImplementation "org.junit.jupiter:junit-jupiter-api:6.0.0" + testRuntimeOnly "org.junit.jupiter:junit-jupiter-engine:6.0.0" } tasks.withType(Test) {