build(exception): Update exception module dependencies and add Spring Boot related configurations - Add Spring Boot dependency management platform

- Introducing Spring Boot Auto-Configuration
- Adjust the dependency order and optimize the project structure
This commit is contained in:
gewuyou 2025-06-05 16:08:44 +08:00
parent 37309f5b15
commit 69c59aeba5

View File

@ -3,8 +3,10 @@ plugins{
}
dependencies {
implementation(project(Modules.Core.EXTENSION))
api(project(Modules.TRACE.STARTER))
implementation(project(Modules.Webmvc.DTO))
implementation(platform(libs.springBootDependencies.bom))
implementation(libs.springBoot.autoconfigure)
api(project(Modules.TRACE.STARTER))
compileOnly(libs.springBootStarter.validation)
compileOnly(libs.springBootStarter.web)
kapt(libs.springBoot.configuration.processor)