From 67ba3d8510c75f62c53d97399d8b9ef3d01196c8 Mon Sep 17 00:00:00 2001
From: zf <1603559716@qq.com>
Date: 星期四, 07 九月 2023 09:26:59 +0800
Subject: [PATCH] 考试系统框架整理,以及集成mybatis-plus

---
 pom.xml |   29 +++++++++++++++++++++++++++++
 1 files changed, 29 insertions(+), 0 deletions(-)

diff --git a/pom.xml b/pom.xml
index 9d5389d..ce5a9ec 100644
--- a/pom.xml
+++ b/pom.xml
@@ -30,6 +30,9 @@
         <poi.version>4.1.2</poi.version>
         <velocity.version>2.3</velocity.version>
         <jwt.version>0.9.1</jwt.version>
+        <mybatis-plus.version>3.5.2</mybatis-plus.version>
+        <hutool.version>5.5.7</hutool.version>
+
     </properties>
 
     <!-- 依赖声明 -->
@@ -169,6 +172,30 @@
                 <artifactId>ruoyi-common</artifactId>
                 <version>${ruoyi.version}</version>
             </dependency>
+            <!--文件模块-->
+            <dependency>
+                <groupId>com.ruoyi</groupId>
+                <artifactId>ruoyi-file</artifactId>
+                <version>${ruoyi.version}</version>
+            </dependency>
+            <!--考试系统-->
+            <dependency>
+                <groupId>com.ruoyi</groupId>
+                <artifactId>exam-system</artifactId>
+                <version>${ruoyi.version}</version>
+            </dependency>
+            <!--mybatis-plus-->
+            <dependency>
+                <groupId>com.baomidou</groupId>
+                <artifactId>mybatis-plus-boot-starter</artifactId>
+                <version>${mybatis-plus.version}</version>
+            </dependency>
+
+            <dependency>
+                <groupId>cn.hutool</groupId>
+                <artifactId>hutool-all</artifactId>
+                <version>${hutool.version}</version>
+            </dependency>
 
         </dependencies>
     </dependencyManagement>
@@ -180,6 +207,8 @@
         <module>ruoyi-quartz</module>
         <module>ruoyi-generator</module>
         <module>ruoyi-common</module>
+        <module>ruoyi-file</module>
+        <module>exam-system</module>
     </modules>
     <packaging>pom</packaging>
 

--
Gitblit v1.9.2