|
|
@@ -13,6 +13,8 @@
|
|
|
<version>1.0.0-SNAPSHOT</version>
|
|
|
<properties>
|
|
|
<java.version>1.8</java.version>
|
|
|
+
|
|
|
+ <hutool.version>5.8.22</hutool.version>
|
|
|
</properties>
|
|
|
|
|
|
<!-- Inherit defaults from Spring Boot -->
|
|
|
@@ -63,17 +65,28 @@
|
|
|
<scope>test</scope>
|
|
|
</dependency>
|
|
|
|
|
|
+<!-- <dependency>-->
|
|
|
+<!-- <groupId>org.springframework.boot</groupId>-->
|
|
|
+<!-- <artifactId>spring-boot-starter-redis</artifactId>-->
|
|
|
+<!--<!– <version>2.7.18</version>–>-->
|
|
|
+<!-- </dependency>-->
|
|
|
+
|
|
|
<dependency>
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
- <artifactId>spring-boot-starter-redis</artifactId>
|
|
|
- <version>1.3.8.RELEASE</version>
|
|
|
+ <artifactId>spring-boot-starter-data-redis</artifactId>
|
|
|
</dependency>
|
|
|
|
|
|
<dependency>
|
|
|
<groupId>cn.hutool</groupId>
|
|
|
<artifactId>hutool-all</artifactId>
|
|
|
- <version>RELEASE</version>
|
|
|
- <scope>compile</scope>
|
|
|
+ <version>${hutool.version}</version>
|
|
|
+<!-- <scope>compile</scope>-->
|
|
|
+ </dependency>
|
|
|
+
|
|
|
+ <dependency>
|
|
|
+ <groupId>redis.clients</groupId>
|
|
|
+ <artifactId>jedis</artifactId>
|
|
|
+ <version>3.3.0</version>
|
|
|
</dependency>
|
|
|
|
|
|
|