From 7ebcb4bf8af0d5ee8f6ef7bc5e091ae9fb817103 Mon Sep 17 00:00:00 2001
From: RuoYi <yzz_ivy@163.com>
Date: Sun, 30 May 2021 18:20:35 +0800
Subject: [PATCH] 修复升级cloud引起的代码生成报错

---
 ruoyi-modules/ruoyi-gen/pom.xml |    6 ++++++
 pom.xml                         |    8 ++++++++
 2 files changed, 14 insertions(+), 0 deletions(-)

diff --git a/pom.xml b/pom.xml
index a3ce520..ab67c92 100644
--- a/pom.xml
+++ b/pom.xml
@@ -36,6 +36,7 @@
         <minio.version>8.2.1</minio.version>
 		<poi.version>4.1.2</poi.version>
         <common-pool.version>2.6.2</common-pool.version>
+        <commons-collections.version>3.2.2</commons-collections.version>
     </properties>
 
     <!-- 依赖声明 -->
@@ -150,6 +151,13 @@
                 </exclusions>
             </dependency>
 
+            <!-- Collection 增强Java集合框架 -->
+            <dependency> 
+                <groupId>commons-collections</groupId> 
+                <artifactId>commons-collections</artifactId> 
+                <version>${commons-collections.version}</version>
+            </dependency>
+
             <!-- JSON 解析器和生成器 -->
             <dependency>
                 <groupId>com.alibaba</groupId>
diff --git a/ruoyi-modules/ruoyi-gen/pom.xml b/ruoyi-modules/ruoyi-gen/pom.xml
index 87be4b7..c22e9cc 100644
--- a/ruoyi-modules/ruoyi-gen/pom.xml
+++ b/ruoyi-modules/ruoyi-gen/pom.xml
@@ -54,6 +54,12 @@
             <artifactId>velocity</artifactId>
         </dependency>
         
+        <!-- Commons Collections -->
+        <dependency> 
+            <groupId>commons-collections</groupId> 
+            <artifactId>commons-collections</artifactId> 
+        </dependency>
+        
         <!-- Mysql Connector -->
         <dependency>
             <groupId>mysql</groupId>

--
Gitblit v1.9.3