mirror of
https://github.moeyy.xyz/https://github.com/GeWuYou/forgeboot
synced 2025-10-27 16:24:22 +08:00
- Added I18nKeyGenPlugin Gradle plugin for generating internationalization key files - Refactoring the internationalization module to separate the API and implementation code - Updated the project structure to create new submodules to support internationalization - Modify the build configuration to add the necessary dependencies and properties
8 lines
271 B
Plaintext
8 lines
271 B
Plaintext
dependencies {
|
|
compileOnly(platform(libs.springBootDependencies.bom))
|
|
compileOnly(platform(libs.springCloudDependencies.bom))
|
|
compileOnly(libs.springBootStarter.web)
|
|
compileOnly(libs.springBootStarter.webflux)
|
|
compileOnly(project(Modules.I18N.API))
|
|
}
|