From 6942de1320fbdccdc5aa3eded45537473149afdf Mon Sep 17 00:00:00 2001 From: gewuyou Date: Thu, 5 Jun 2025 16:09:08 +0800 Subject: [PATCH] build(exception-i18n): Add Spring Boot Autoconfiguration Dependencies - Add Spring Boot dependency platform and autoconfiguration dependencies in the build.gradle.kts file - The addition of these dependencies helps to enhance project configuration and management capabilities --- forgeboot-webmvc/exception-i18n/build.gradle.kts | 2 ++ 1 file changed, 2 insertions(+) diff --git a/forgeboot-webmvc/exception-i18n/build.gradle.kts b/forgeboot-webmvc/exception-i18n/build.gradle.kts index b7f51f7..719ae54 100644 --- a/forgeboot-webmvc/exception-i18n/build.gradle.kts +++ b/forgeboot-webmvc/exception-i18n/build.gradle.kts @@ -4,6 +4,8 @@ plugins{ } dependencies { implementation(project(Modules.Core.EXTENSION)) + implementation(platform(libs.springBootDependencies.bom)) + implementation(libs.springBoot.autoconfigure) api(project(Modules.I18n.STARTER)) api(project(Modules.TRACE.STARTER)) implementation(project(Modules.Webmvc.DTO))