Files
cid/honeycom-common/honeycom-common-idempotent/pom.xml
2025-11-11 19:51:56 +08:00

42 lines
1.1 KiB
XML

<?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>com.honeycombis</groupId>
<artifactId>honeycom-common</artifactId>
<version>5.4.0</version>
</parent>
<artifactId>honeycom-common-idempotent</artifactId>
<packaging>jar</packaging>
<description>honeycom 幂等插件</description>
<properties>
<redisson.version>3.24.3</redisson.version>
</properties>
<dependencies>
<!--aop-->
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-aop</artifactId>
<scope>provided</scope>
</dependency>
<!--redisson-->
<dependency>
<groupId>org.redisson</groupId>
<artifactId>redisson-spring-boot-starter</artifactId>
<version>${redisson.version}</version>
</dependency>
<!--servlet 依赖-->
<dependency>
<groupId>jakarta.servlet</groupId>
<artifactId>jakarta.servlet-api</artifactId>
</dependency>
</dependencies>
</project>