From 6a5a0f84c49a110e4266e69b71dc090a94b1a674 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 18 Dec 2025 23:16:59 +0000 Subject: [PATCH 1/3] build: bump spring-boot.version from 4.0.0 to 4.0.1 in /example Bumps `spring-boot.version` from 4.0.0 to 4.0.1. Updates `org.springframework.boot:spring-boot-dependencies` from 4.0.0 to 4.0.1 - [Release notes](https://github.com/spring-projects/spring-boot/releases) - [Commits](https://github.com/spring-projects/spring-boot/compare/v4.0.0...v4.0.1) Updates `org.springframework.boot:spring-boot-maven-plugin` from 4.0.0 to 4.0.1 - [Release notes](https://github.com/spring-projects/spring-boot/releases) - [Commits](https://github.com/spring-projects/spring-boot/compare/v4.0.0...v4.0.1) --- updated-dependencies: - dependency-name: org.springframework.boot:spring-boot-dependencies dependency-version: 4.0.1 dependency-type: direct:production update-type: version-update:semver-patch - dependency-name: org.springframework.boot:spring-boot-maven-plugin dependency-version: 4.0.1 dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] --- example/pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/example/pom.xml b/example/pom.xml index b24bd9d..ce0bc40 100644 --- a/example/pom.xml +++ b/example/pom.xml @@ -13,7 +13,7 @@ ${java.version} ${java.version} 6.0.1 - 4.0.0 + 4.0.1 7.33.0 3.0.0 2.0.0 From 319f18713069f86c79aec4dad0ac7f113fa8db3f Mon Sep 17 00:00:00 2001 From: Paul Williams Date: Sat, 20 Dec 2025 20:57:36 +0530 Subject: [PATCH 2/3] build: add spring-boot-starter-restclient for test --- example/acceptance-test/pom.xml | 5 +++++ example/rest-adapter/pom.xml | 5 +++++ 2 files changed, 10 insertions(+) diff --git a/example/acceptance-test/pom.xml b/example/acceptance-test/pom.xml index 0313261..8f4d281 100644 --- a/example/acceptance-test/pom.xml +++ b/example/acceptance-test/pom.xml @@ -42,6 +42,11 @@ spring-boot-resttestclient test + + org.springframework.boot + spring-boot-starter-restclient + test + com.h2database h2 diff --git a/example/rest-adapter/pom.xml b/example/rest-adapter/pom.xml index 0a6a86f..0f8df23 100644 --- a/example/rest-adapter/pom.xml +++ b/example/rest-adapter/pom.xml @@ -40,6 +40,11 @@ spring-boot-resttestclient test + + org.springframework.boot + spring-boot-starter-restclient + test + From d3e4efc560663092643ef9830700e9c5c44bb9b7 Mon Sep 17 00:00:00 2001 From: Paul Williams Date: Sat, 20 Dec 2025 20:59:40 +0530 Subject: [PATCH 3/3] build: add maven-dependency-plugin and update maven-surefire-plugin configuration Fix issue Mockito is currently self-attaching to enable the inline-mock-maker. This will no longer work in future releases of the JDK. Please add Mockito as an agent to your build --- example/pom.xml | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/example/pom.xml b/example/pom.xml index ce0bc40..fb78b9d 100644 --- a/example/pom.xml +++ b/example/pom.xml @@ -159,12 +159,24 @@ + + org.apache.maven.plugins + maven-dependency-plugin + + + + properties + + + + org.apache.maven.plugins maven-surefire-plugin ${maven-surefire-plugin.version} false + @{argLine} -javaagent:${org.mockito:mockito-core:jar}