From 662fa0fc61635b7c88ccdfd943766e9cf48f8070 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 15 Jun 2026 07:29:28 +0000 Subject: [PATCH] Bump org.springframework.boot:spring-boot-starter-test in /examples Bumps [org.springframework.boot:spring-boot-starter-test](https://github.com/spring-projects/spring-boot) from 4.0.6 to 4.1.0. - [Release notes](https://github.com/spring-projects/spring-boot/releases) - [Commits](https://github.com/spring-projects/spring-boot/compare/v4.0.6...v4.1.0) --- updated-dependencies: - dependency-name: org.springframework.boot:spring-boot-starter-test dependency-version: 4.1.0 dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- examples/aspectj/weaving/build.gradle | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/examples/aspectj/weaving/build.gradle b/examples/aspectj/weaving/build.gradle index d3e82831..b1c17682 100644 --- a/examples/aspectj/weaving/build.gradle +++ b/examples/aspectj/weaving/build.gradle @@ -32,13 +32,13 @@ dependencies { implementation "org.slf4j:slf4j-api:2.+" - implementation "org.springframework.boot:spring-boot-starter:4.0.6" + implementation "org.springframework.boot:spring-boot-starter:4.1.0" implementation "org.aspectj:aspectjrt:1.9.25.1" implementation localGroovy() testImplementation "junit:junit:4.13.2" - implementation "org.springframework.boot:spring-boot-starter-test:4.0.6" + implementation "org.springframework.boot:spring-boot-starter-test:4.1.0" } configurations.testImplementation.extendsFrom(configurations.jacocoAnt)