forgeboot/forgeboot-webmvc/dto/build.gradle.kts
gewuyou 1432b2380b refactor(webmvc): 重构 Web 项目通用 CRUD 接口规范模块
- 将 `forgeboot-webmvc-spec` 模块拆分为 `spec-core` 和 `spec-jpa` 两个子模块- 重新组织代码结构,提高模块化和可维护性
- 更新包名和类名,使其更加清晰和一致
- 移除冗余代码,优化接口定义
2025-07-24 22:14:21 +08:00

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}")
}