From 75ff7790d8450efeaa7b6f0e2af3550b0f5b962a Mon Sep 17 00:00:00 2001 From: Joshi <3040996759@qq.com> Date: Tue, 9 Jun 2026 10:20:50 +0800 Subject: [PATCH] =?UTF-8?q?feat(cost):=20=E6=B7=BB=E5=8A=A0=E6=88=90?= =?UTF-8?q?=E6=9C=AC=E7=AE=A1=E7=90=86=E4=B8=9A=E5=8A=A1pom?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - 创建 ruoyi-cost 模块作为成本管理业务模块 - 配置模块继承自 ruoyi 父项目 - 添加核心框架依赖 ruoyi-framework - 集成 lombok 注解处理器支持 - 引入 swagger 注解用于 API 文档生成 - 配置 JUnit 和 Spring Boot 测试依赖 - 设置模块打包方式为 jar 格式 --- ruoyi-cost/pom.xml | 55 ++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 55 insertions(+) create mode 100644 ruoyi-cost/pom.xml diff --git a/ruoyi-cost/pom.xml b/ruoyi-cost/pom.xml new file mode 100644 index 00000000..bf3845d8 --- /dev/null +++ b/ruoyi-cost/pom.xml @@ -0,0 +1,55 @@ + + + + ruoyi + com.ruoyi + 3.8.9 + + 4.0.0 + jar + ruoyi-cost + + 成本管理业务模块 + + + + + com.ruoyi + ruoyi-framework + + + org.projectlombok + lombok + provided + + + + + io.swagger + swagger-annotations + 1.6.2 + + + + + junit + junit + test + + + org.junit.jupiter + junit-jupiter + test + + + + + org.springframework.boot + spring-boot-starter-test + test + + + +