From dd6e92ecfbd616d1a8d1c33fbff2191d236c2e52 Mon Sep 17 00:00:00 2001 From: Michel Palourdio Date: Sat, 2 May 2026 16:44:43 +0200 Subject: [PATCH] chore(deps): replace spring-boot-starter-web with spring-boot-starter-webmvc --- build.gradle.kts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build.gradle.kts b/build.gradle.kts index eb8cdf5..454b1da 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -39,7 +39,7 @@ checkstyle { tasks.checkstyleTest { enabled = false } dependencies { - implementation("org.springframework.boot:spring-boot-starter-web") + implementation("org.springframework.boot:spring-boot-starter-webmvc") implementation("org.springframework.boot:spring-boot-starter-restclient") implementation("org.springframework.boot:spring-boot-starter-actuator") implementation("org.springframework.boot:spring-boot-starter-thymeleaf")