From b9bb1ac43e6736b9a014bcb2a6ab553aaa9c67fa Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 2 Jun 2025 03:36:53 +0000 Subject: [PATCH 1/2] Bump org.junit.jupiter:junit-jupiter from 5.12.2 to 5.13.0 Bumps [org.junit.jupiter:junit-jupiter](https://github.com/junit-team/junit5) from 5.12.2 to 5.13.0. - [Release notes](https://github.com/junit-team/junit5/releases) - [Commits](https://github.com/junit-team/junit5/compare/r5.12.2...r5.13.0) --- updated-dependencies: - dependency-name: org.junit.jupiter:junit-jupiter dependency-version: 5.13.0 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 6a33fd3..71df274 100644 --- a/build.gradle +++ b/build.gradle @@ -53,7 +53,7 @@ dependencies { testImplementation "org.springframework.boot:spring-boot-starter-test:$springBootVersion" testImplementation "org.springframework.boot:spring-boot-starter-actuator:$springBootVersion" - testImplementation 'org.junit.jupiter:junit-jupiter:5.12.2' + testImplementation 'org.junit.jupiter:junit-jupiter:5.13.0' testRuntimeOnly 'org.junit.platform:junit-platform-launcher' } From 7789dbee64fb087f5cf6738b1db13e2114870c1b Mon Sep 17 00:00:00 2001 From: Devon Hillard Date: Mon, 2 Jun 2025 11:26:15 -0600 Subject: [PATCH 2/2] Enhance testing configuration by adding annotation processor and updating test dependencies --- build.gradle | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/build.gradle b/build.gradle index 71df274..889c2e4 100644 --- a/build.gradle +++ b/build.gradle @@ -47,14 +47,15 @@ dependencies { // Lombok dependencies for test classes testCompileOnly "org.projectlombok:lombok:$lombokVersion" testAnnotationProcessor "org.projectlombok:lombok:$lombokVersion" + testAnnotationProcessor "org.springframework.boot:spring-boot-configuration-processor:$springBootVersion" // Testing dependencies testImplementation "org.springframework.boot:spring-boot-starter-web:$springBootVersion" testImplementation "org.springframework.boot:spring-boot-starter-test:$springBootVersion" testImplementation "org.springframework.boot:spring-boot-starter-actuator:$springBootVersion" - testImplementation 'org.junit.jupiter:junit-jupiter:5.13.0' testRuntimeOnly 'org.junit.platform:junit-platform-launcher' + } test { @@ -99,6 +100,7 @@ tasks.register('testAll') { // Ensure the default 'test' task triggers both test tasks tasks.test { + useJUnitPlatform() dependsOn(tasks.named('testAll')) }