From 6731d746e976ce1f0acde6c5302ce55c9a375e22 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 1 Jan 2026 14:02:10 +0000 Subject: [PATCH] build(deps): bump org.springframework.boot:spring-boot-devtools Bumps [org.springframework.boot:spring-boot-devtools](https://github.com/spring-projects/spring-boot) from 3.5.7 to 4.0.1. - [Release notes](https://github.com/spring-projects/spring-boot/releases) - [Commits](https://github.com/spring-projects/spring-boot/compare/v3.5.7...v4.0.1) --- updated-dependencies: - dependency-name: org.springframework.boot:spring-boot-devtools dependency-version: 4.0.1 dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- serverpackcreator-app/build.gradle.kts | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/serverpackcreator-app/build.gradle.kts b/serverpackcreator-app/build.gradle.kts index c03a2b624..fd8a70488 100644 --- a/serverpackcreator-app/build.gradle.kts +++ b/serverpackcreator-app/build.gradle.kts @@ -56,18 +56,18 @@ dependencies { //WEB api("org.jetbrains.kotlin:kotlin-reflect:2.1.21") api("com.fasterxml.jackson.module:jackson-module-kotlin:2.20.1") - api("org.springframework.boot:spring-boot-starter-web:3.5.7") - api("org.springframework.boot:spring-boot-starter-log4j2:3.5.7") - api("org.springframework.boot:spring-boot-starter-data-mongodb:3.5.7") + api("org.springframework.boot:spring-boot-starter-web:4.0.1") + api("org.springframework.boot:spring-boot-starter-log4j2:4.0.1") + api("org.springframework.boot:spring-boot-starter-data-mongodb:4.0.1") testRuntimeOnly("com.h2database:h2:2.3.232") - testImplementation("org.springframework.boot:spring-boot-starter-test:3.5.7") { + testImplementation("org.springframework.boot:spring-boot-starter-test:4.0.1") { exclude(group = "org.junit.vintage", module = "junit-vintage-engine") exclude(group = "org.mockito", module = "mockito-core") } testImplementation("org.junit.jupiter:junit-jupiter-api:5.12.2") testImplementation("org.junit.jupiter:junit-jupiter-engine:5.12.2") testImplementation("com.ninja-squad:springmockk:4.0.2") - developmentOnly("org.springframework.boot:spring-boot-devtools:3.5.7") + developmentOnly("org.springframework.boot:spring-boot-devtools:4.0.1") //developmentOnly("org.springdoc:springdoc-openapi-starter-webmvc-ui:2.2.0") }