mirror of
https://github.moeyy.xyz/https://github.com/GeWuYou/forgeboot
synced 2025-10-27 20:14:25 +08:00
- Added USE_CONFIGURATION_PROCESSOR project flag - Add API dependency to Core.EXTENSION in forgeboot-core - Rename the I18nProperties file and convert it to Java class - Update forgeboot-i18n dependency and add configuration processor - Add spring-boot-configuration-processor dependency in libs.versions.toml - Update root project configuration, support configuration processor
13 lines
346 B
Plaintext
13 lines
346 B
Plaintext
extra {
|
|
// 需要SpringBootBom
|
|
setProperty(ProjectFlags.USE_SPRING_BOOT_BOM, true)
|
|
setProperty(ProjectFlags.USE_CONFIGURATION_PROCESSOR, true)
|
|
}
|
|
dependencies {
|
|
implementation(project(Modules.Core.EXTENSION))
|
|
|
|
compileOnly(libs.springBootStarter.web)
|
|
// Spring Boot WebFlux
|
|
compileOnly(libs.springBootStarter.webflux)
|
|
}
|