From 5fa6b8c5f9a0d5e367910a0ec52d3882035ed4cd Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 17 Mar 2025 00:52:44 +0000 Subject: [PATCH 1/2] Bump org.junit:junit-bom from 5.11.3 to 5.12.1 Bumps [org.junit:junit-bom](https://github.com/junit-team/junit5) from 5.11.3 to 5.12.1. - [Release notes](https://github.com/junit-team/junit5/releases) - [Commits](https://github.com/junit-team/junit5/compare/r5.11.3...r5.12.1) --- updated-dependencies: - dependency-name: org.junit:junit-bom dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- build.gradle | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build.gradle b/build.gradle index 3380ed5..369a921 100644 --- a/build.gradle +++ b/build.gradle @@ -19,7 +19,7 @@ repositories { dependencies { testImplementation 'com.fasterxml.jackson.core:jackson-databind:2.18.2' - testImplementation platform('org.junit:junit-bom:5.11.3') + testImplementation platform('org.junit:junit-bom:5.12.1') testImplementation 'org.junit.jupiter:junit-jupiter' testImplementation 'org.reflections:reflections:0.10.2' testImplementation 'uk.co.jemos.podam:podam:8.0.2.RELEASE' From bb7a9b33e95fbff38b77e6336cca9e54d5d1cdaf Mon Sep 17 00:00:00 2001 From: Robert Faust Date: Tue, 29 Apr 2025 10:53:48 -0500 Subject: [PATCH 2/2] Migrating Gradle to Test Suites --- build.gradle | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) diff --git a/build.gradle b/build.gradle index 21f12d2..3ac607c 100644 --- a/build.gradle +++ b/build.gradle @@ -1,5 +1,6 @@ plugins { id 'java' + id 'jvm-test-suite' id 'maven-publish' id 'jacoco' id 'io.freefair.lombok' @@ -19,14 +20,16 @@ repositories { dependencies { testImplementation 'com.fasterxml.jackson.core:jackson-databind:2.18.3' - testImplementation platform('org.junit:junit-bom:5.12.1') - testImplementation 'org.junit.jupiter:junit-jupiter' testImplementation 'org.reflections:reflections:0.10.2' testImplementation 'uk.co.jemos.podam:podam:8.0.2.RELEASE' } -test { - useJUnitPlatform() +testing { + suites { + test { + useJUnitJupiter() + } + } } publishing {