From 0d2d98c1c8538b3078c9ae0ae9287d58f0f6de22 Mon Sep 17 00:00:00 2001
From: huangzhen <867127663@qq.com>
Date: Thu, 13 Oct 2022 16:31:05 +0800
Subject: [PATCH] 导入redis服务器地址配置
---
pom.xml | 28 ++++++++++++++++++++++++++++
1 files changed, 28 insertions(+), 0 deletions(-)
diff --git a/pom.xml b/pom.xml
index 1d744bd..519dd04 100644
--- a/pom.xml
+++ b/pom.xml
@@ -318,8 +318,36 @@
<version>3.2.1</version>
</dependency>
+ <!--后面是新增的依赖-->
+ <dependency>
+ <groupId>org.apache.commons</groupId>
+ <artifactId>commons-lang3</artifactId>
+ <version>3.11</version>
+ </dependency>
+ <!--redis-->
+ <dependency>
+ <groupId>org.springframework.boot</groupId>
+ <artifactId>spring-boot-starter-data-redis</artifactId>
+ <version>2.3.12.RELEASE</version>
+ </dependency>
+ <dependency>
+ <groupId>org.apache.commons</groupId>
+ <artifactId>commons-pool2</artifactId>
+ </dependency>
+ <!--mybatis-plus-->
+ <dependency>
+ <groupId>com.baomidou</groupId>
+ <artifactId>mybatis-plus-annotation</artifactId>
+ <version>3.5.2</version>
+ </dependency>
+ <dependency>
+ <groupId>com.baomidou</groupId>
+ <artifactId>mybatis-plus-extension</artifactId>
+ <version>3.5.2</version>
+ </dependency>
+
</dependencies>
<build>
--
Gitblit v1.9.2