You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
47 lines
1.6 KiB
47 lines
1.6 KiB
<?xml version="1.0" encoding="UTF-8"?>
|
|
<project xmlns="http://maven.apache.org/POM/4.0.0"
|
|
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
|
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
<parent>
|
|
<artifactId>common</artifactId>
|
|
<groupId>com.zhengqing</groupId>
|
|
<version>${revision}</version>
|
|
</parent>
|
|
|
|
<artifactId>redis</artifactId>
|
|
|
|
<name>${project.artifactId}</name>
|
|
<version>${revision}</version>
|
|
<packaging>jar</packaging>
|
|
|
|
<properties>
|
|
</properties>
|
|
|
|
<dependencies>
|
|
<!-- redis (注:reactive具有限流功能) -->
|
|
<!-- <dependency>-->
|
|
<!-- <groupId>org.springframework.boot</groupId>-->
|
|
<!-- <artifactId>spring-boot-starter-data-redis</artifactId>-->
|
|
<!-- </dependency>-->
|
|
<dependency>
|
|
<groupId>org.springframework.boot</groupId>
|
|
<artifactId>spring-boot-starter-data-redis-reactive</artifactId>
|
|
</dependency>
|
|
<!-- 对象池,使用redis时必须引入 -->
|
|
<dependency>
|
|
<groupId>org.apache.commons</groupId>
|
|
<artifactId>commons-pool2</artifactId>
|
|
</dependency>
|
|
|
|
<!-- redisson-spring-boot-starter -->
|
|
<!-- https://mvnrepository.com/artifact/org.redisson/redisson-spring-boot-starter -->
|
|
<dependency>
|
|
<groupId>org.redisson</groupId>
|
|
<artifactId>redisson-spring-boot-starter</artifactId>
|
|
<version>3.17.6</version>
|
|
</dependency>
|
|
</dependencies>
|
|
|
|
</project>
|
|
|