Files
2025-11-27 12:40:07 +08:00

36 lines
1.3 KiB
XML
Raw Permalink Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
<?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>
<groupId>cn.bootx.platform</groupId>
<artifactId>bootx-platform-starter</artifactId>
<version>3.1.1</version>
</parent>
<artifactId>starter-delay-queue</artifactId>
<description>延迟队列-redis实现</description>
<dependencies>
<!-- redis -->
<dependency>
<groupId>cn.bootx.platform</groupId>
<artifactId>common-redis</artifactId>
<version>${bootx-platform.version}</version>
</dependency>
<!-- spring 封装 -->
<dependency>
<groupId>cn.bootx.platform</groupId>
<artifactId>common-spring</artifactId>
<version>${bootx-platform.version}</version>
</dependency>
<!-- 分布式锁 若使用redisTemplate作为分布式锁底层则需要引入-->
<dependency>
<groupId>com.baomidou</groupId>
<artifactId>lock4j-redis-template-spring-boot-starter</artifactId>
<version>${lock4j.version}</version>
</dependency>
</dependencies>
</project>