2022-05-06 18:07:00 +08:00
|
|
|
<?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">
|
|
|
|
<parent>
|
2023-03-31 18:39:10 +08:00
|
|
|
<groupId>org.dromara</groupId>
|
2023-01-18 17:09:43 +08:00
|
|
|
<artifactId>ruoyi-common</artifactId>
|
2023-01-13 18:43:40 +08:00
|
|
|
<version>${revision}</version>
|
2022-05-06 18:07:00 +08:00
|
|
|
</parent>
|
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
|
2023-01-18 17:09:43 +08:00
|
|
|
<artifactId>ruoyi-common-redis</artifactId>
|
2022-05-06 18:07:00 +08:00
|
|
|
|
|
|
|
<description>
|
2023-01-18 17:09:43 +08:00
|
|
|
ruoyi-common-redis 缓存服务
|
2022-05-06 18:07:00 +08:00
|
|
|
</description>
|
|
|
|
|
|
|
|
<dependencies>
|
2023-01-18 17:09:43 +08:00
|
|
|
<!-- RuoYi Common Core-->
|
2022-05-06 18:07:00 +08:00
|
|
|
<dependency>
|
2023-03-31 18:39:10 +08:00
|
|
|
<groupId>org.dromara</groupId>
|
2023-01-18 17:09:43 +08:00
|
|
|
<artifactId>ruoyi-common-core</artifactId>
|
2022-05-06 18:07:00 +08:00
|
|
|
</dependency>
|
|
|
|
|
2023-01-18 17:09:43 +08:00
|
|
|
<!--redisson-->
|
2022-05-06 18:07:00 +08:00
|
|
|
<dependency>
|
2023-01-18 17:09:43 +08:00
|
|
|
<groupId>org.redisson</groupId>
|
|
|
|
<artifactId>redisson-spring-boot-starter</artifactId>
|
2022-05-06 18:07:00 +08:00
|
|
|
</dependency>
|
|
|
|
|
|
|
|
<dependency>
|
2023-01-18 17:09:43 +08:00
|
|
|
<groupId>com.baomidou</groupId>
|
|
|
|
<artifactId>lock4j-redisson-spring-boot-starter</artifactId>
|
2022-05-06 18:07:00 +08:00
|
|
|
</dependency>
|
2024-01-03 10:25:23 +08:00
|
|
|
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.github.ben-manes.caffeine</groupId>
|
|
|
|
<artifactId>caffeine</artifactId>
|
|
|
|
</dependency>
|
2024-04-24 13:15:43 +08:00
|
|
|
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.fasterxml.jackson.datatype</groupId>
|
|
|
|
<artifactId>jackson-datatype-jsr310</artifactId>
|
|
|
|
</dependency>
|
2024-11-27 18:23:10 +08:00
|
|
|
|
|
|
|
<!-- <!– redis序列化替代方案 比json快无数的跨语言二进制序列化 –>-->
|
|
|
|
<!-- <dependency>-->
|
|
|
|
<!-- <groupId>org.apache.fury</groupId>-->
|
|
|
|
<!-- <artifactId>fury-core</artifactId>-->
|
|
|
|
<!-- <version>0.9.0</version>-->
|
|
|
|
<!-- </dependency>-->
|
|
|
|
<!-- <dependency>-->
|
|
|
|
<!-- <groupId>org.slf4j</groupId>-->
|
|
|
|
<!-- <artifactId>slf4j-api</artifactId>-->
|
|
|
|
<!-- </dependency>-->
|
|
|
|
|
2022-05-06 18:07:00 +08:00
|
|
|
</dependencies>
|
|
|
|
|
|
|
|
</project>
|