From 71a2a8245db4c04be3f96a9eb9b47931d3130650 Mon Sep 17 00:00:00 2001 From: zlyx <1242874891@qq.com> Date: 星期三, 18 一月 2023 17:09:43 +0800 Subject: [PATCH] refactor 重构 common, framework 包结构, 参照 cloud 版本拆分子模块 ; update 更新模块包名 ; delete 移除 sms 模块, oss 模块, framework 模块 (并入 common 模块) ; --- pom.xml | 23 ++++++++++++++++++++--- 1 files changed, 20 insertions(+), 3 deletions(-) diff --git a/pom.xml b/pom.xml index fd9fdbd..54deb23 100644 --- a/pom.xml +++ b/pom.xml @@ -106,6 +106,15 @@ <scope>import</scope> </dependency> + <!-- common 鐨勪緷璧栭厤缃�--> + <dependency> + <groupId>com.ruoyi</groupId> + <artifactId>ruoyi-common-bom</artifactId> + <version>${revision}</version> + <type>pom</type> + <scope>import</scope> + </dependency> + <dependency> <groupId>org.springdoc</groupId> <artifactId>springdoc-openapi-starter-webmvc-api</artifactId> @@ -171,6 +180,11 @@ </exclusion> </exclusions> </dependency> + <dependency> + <groupId>cn.dev33</groupId> + <artifactId>sa-token-core</artifactId> + <version>${satoken.version}</version> + </dependency> <!-- dynamic-datasource 澶氭暟鎹簮--> <dependency> @@ -188,6 +202,12 @@ <dependency> <groupId>com.baomidou</groupId> <artifactId>mybatis-plus-boot-starter</artifactId> + <version>${mybatis-plus.version}</version> + </dependency> + + <dependency> + <groupId>com.baomidou</groupId> + <artifactId>mybatis-plus-annotation</artifactId> <version>${mybatis-plus.version}</version> </dependency> @@ -327,15 +347,12 @@ <modules> <module>ruoyi-admin</module> - <module>ruoyi-framework</module> <module>ruoyi-system</module> <module>ruoyi-job</module> <module>ruoyi-generator</module> <module>ruoyi-common</module> <module>ruoyi-demo</module> <module>ruoyi-extend</module> - <module>ruoyi-oss</module> - <module>ruoyi-sms</module> </modules> <packaging>pom</packaging> -- Gitblit v1.9.3