mirror of
https://github.moeyy.xyz/https://github.com/GeWuYou/forgeboot
synced 2025-10-27 23:34:22 +08:00
- 将 `forgeboot-webmvc-spec` 模块拆分为 `spec-core` 和 `spec-jpa` 两个子模块- 重新组织代码结构,提高模块化和可维护性 - 更新包名和类名,使其更加清晰和一致 - 移除冗余代码,优化接口定义
16 lines
428 B
Plaintext
16 lines
428 B
Plaintext
plugins{
|
|
alias(libs.plugins.forgeboot.i18n.keygen)
|
|
}
|
|
dependencies {
|
|
api(project(Modules.I18n.API))
|
|
api(project(Modules.TRACE.API))
|
|
implementation(libs.kotlinReflect)
|
|
compileOnly(libs.springBootDependencies.bom)
|
|
compileOnly(libs.jackson.annotations)
|
|
}
|
|
i18nKeyGen {
|
|
rootPackage.set("com.gewuyou.forgeboot.webmvc.dto.i18n")
|
|
level.set(3)
|
|
readPath.set("src/main/resources/i18n/${project.name}")
|
|
}
|