build(forgeboot-i18n-autoconfigure): Update project dependency configuration - Move dependencies from the core-extension module to implementation configuration - Add spring-boot-autoconfigure dependencies

- Update other dependencies to adapt to project structure changes
This commit is contained in:
gewuyou 2025-06-05 16:07:11 +08:00
parent ebe801f6bb
commit b90048a57d

View File

@ -1,10 +1,11 @@
dependencies { dependencies {
compileOnly(platform(libs.springBootDependencies.bom)) implementation(project(Modules.Core.EXTENSION))
implementation(platform(libs.springBootDependencies.bom))
implementation(libs.springBoot.autoconfigure)
compileOnly(platform(libs.springCloudDependencies.bom)) compileOnly(platform(libs.springCloudDependencies.bom))
compileOnly(libs.springBootStarter.web) compileOnly(libs.springBootStarter.web)
compileOnly(libs.springBootStarter.webflux) compileOnly(libs.springBootStarter.webflux)
compileOnly(project(Modules.I18n.API)) compileOnly(project(Modules.I18n.API))
compileOnly(project(Modules.I18n.IMPL)) compileOnly(project(Modules.I18n.IMPL))
implementation(project(Modules.Core.EXTENSION))
} }