mirror of
https://github.com/continew-org/continew-starter.git
synced 2025-09-09 06:58:38 +08:00
51 lines
2.0 KiB
XML
51 lines
2.0 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>top.continew</groupId>
|
||
<artifactId>continew-starter-cache</artifactId>
|
||
<version>${revision}</version>
|
||
</parent>
|
||
|
||
<artifactId>continew-starter-cache-jetcache</artifactId>
|
||
<description>ContiNew Starter 缓存模块 - JetCache</description>
|
||
|
||
<dependencies>
|
||
<!-- JetCache(基于 Java 的缓存系统封装,提供统一的 API 和注解来简化缓存的使用。提供了比 SpringCache 更加强大的注解,可以原生的支持 TTL、两级缓存、分布式自动刷新,还提供了 Cache 接口用于手工缓存操作) -->
|
||
<dependency>
|
||
<groupId>com.alicp.jetcache</groupId>
|
||
<artifactId>jetcache-autoconfigure</artifactId>
|
||
</dependency>
|
||
|
||
<!-- JetCache 注解 -->
|
||
<dependency>
|
||
<groupId>com.alicp.jetcache</groupId>
|
||
<artifactId>jetcache-anno</artifactId>
|
||
</dependency>
|
||
|
||
<!-- JetCache Redisson 适配 -->
|
||
<dependency>
|
||
<groupId>com.alicp.jetcache</groupId>
|
||
<artifactId>jetcache-redisson</artifactId>
|
||
<exclusions>
|
||
<exclusion>
|
||
<groupId>org.redisson</groupId>
|
||
<artifactId>redisson</artifactId>
|
||
</exclusion>
|
||
</exclusions>
|
||
</dependency>
|
||
|
||
<dependency>
|
||
<groupId>org.apache.commons</groupId>
|
||
<artifactId>commons-pool2</artifactId>
|
||
</dependency>
|
||
|
||
<!-- 缓存模块 - Redisson -->
|
||
<dependency>
|
||
<groupId>top.continew</groupId>
|
||
<artifactId>continew-starter-cache-redisson</artifactId>
|
||
</dependency>
|
||
</dependencies>
|
||
</project> |