build(forgeboot-webmvc): Add Spring Boot Dependencies

- Introducing Spring Boot dependency management platform - Adding Spring Boot automatic configuration module
- Keep existing project dependency structure unchanged
This commit is contained in:
gewuyou 2025-06-05 16:09:37 +08:00
parent 806cefd248
commit 6c30120016

View File

@ -1,5 +1,7 @@
dependencies {
implementation(project(Modules.Core.EXTENSION))
implementation(platform(libs.springBootDependencies.bom))
implementation(libs.springBoot.autoconfigure)
kapt(libs.springBoot.configuration.processor)
compileOnly(libs.springBootStarter.web)
}