easy-cache
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>io.github.xiaoyudeguang</groupId>
<artifactId>easy-cache</artifactId>
<version>4.0.6</version>
</dependency><?xml version="1.0"?> <project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <modelVersion>4.0.0</modelVersion> <parent> <groupId>io.github.xiaoyudeguang</groupId> <artifactId>easy-develop</artifactId> <version>4.0.6</version> </parent> <artifactId>easy-cache</artifactId> <packaging>jar</packaging> <url>https://gitee.com/xiaoyudeguang/easy-cache</url> <name>easy-cache</name> <description>An quickily tool named easy-cache for java developers when cache something.</description> <dependencies> <dependency> <groupId>io.github.xiaoyudeguang</groupId> <artifactId>easy-core</artifactId> </dependency> <dependency> <groupId>net.sf.ehcache</groupId> <artifactId>ehcache</artifactId> <scope>provided</scope> </dependency> <dependency> <groupId>net.spy</groupId> <artifactId>spymemcached</artifactId> <version>2.12.2</version> <scope>provided</scope> </dependency> <dependency> <groupId>org.springframework.data</groupId> <artifactId>spring-data-redis</artifactId> <scope>provided</scope> </dependency> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter</artifactId> <scope>provided</scope> </dependency> </dependencies> </project>