mirror of
				https://github.com/continew-org/continew-starter.git
				synced 2025-10-31 08:58:37 +08:00 
			
		
		
		
	
		
			
				
	
	
		
			54 lines
		
	
	
		
			2.1 KiB
		
	
	
	
		
			XML
		
	
	
	
	
	
			
		
		
	
	
			54 lines
		
	
	
		
			2.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>top.continew.starter</groupId>
 | ||
|         <artifactId>continew-starter-cache</artifactId>
 | ||
|         <version>${revision}</version>
 | ||
|     </parent>
 | ||
| 
 | ||
|     <artifactId>continew-starter-cache-jetcache</artifactId>
 | ||
|     <packaging>jar</packaging>
 | ||
| 
 | ||
|     <name>${project.artifactId}</name>
 | ||
|     <description>ContiNew Starter 缓存模块 - JetCache</description>
 | ||
| 
 | ||
|     <dependencies>
 | ||
|         <!-- 缓存模块 - Redisson -->
 | ||
|         <dependency>
 | ||
|             <groupId>top.continew.starter</groupId>
 | ||
|             <artifactId>continew-starter-cache-redisson</artifactId>
 | ||
|         </dependency>
 | ||
| 
 | ||
|         <!-- 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>
 | ||
|     </dependencies>
 | ||
| </project> |