From 0ce9e4e67bcb063fdc0d098c3e06f46f72d88e12 Mon Sep 17 00:00:00 2001
From: chenhao <852066789@qq.com>
Date: Wed, 23 Apr 2025 10:00:54 +0800
Subject: [PATCH] =?UTF-8?q?build(ruoyi-common):=20=E6=B7=BB=E5=8A=A0=20Lom?=
 =?UTF-8?q?bok=20=E4=BE=9D=E8=B5=96?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit

- 在 ruoyi-common 模块的 pom.xml 文件中添加了 Lombok依赖
- Lombok 是一个 Java 库,可以通过注解减少样板代码,提高代码可读性和易维护性
---
 ruoyi-common/pom.xml | 6 +++++-
 1 file changed, 5 insertions(+), 1 deletion(-)

diff --git a/ruoyi-common/pom.xml b/ruoyi-common/pom.xml
index ea15dc66..76746736 100644
--- a/ruoyi-common/pom.xml
+++ b/ruoyi-common/pom.xml
@@ -34,6 +34,7 @@
             <groupId>org.apache.shiro</groupId>
             <artifactId>shiro-core</artifactId>
         </dependency>
+
         
         <!-- Shiro使用EhCache缓存框架 -->
         <dependency>
@@ -94,7 +95,10 @@
             <groupId>javax.servlet</groupId>
             <artifactId>javax.servlet-api</artifactId>
         </dependency>
-
+        <dependency>
+            <groupId>org.projectlombok</groupId>
+            <artifactId>lombok</artifactId>
+        </dependency>
     </dependencies>
 
 </project>
\ No newline at end of file