1 Star 0 Fork 7

蜗居深山/common-cache

forked from cnsugar/common-cache 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
build.pom 1.98 KB
一键复制 编辑 原始数据 按行查看 历史
cnsugar 提交于 2019-01-08 16:06 . 初始提交
<?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>
<groupId>com.cnsugar</groupId>
<artifactId>common-cache</artifactId>
<packaging>jar</packaging>
<version>1.0</version>
<description>ehcache、memcached、redis三种缓存工具类封装</description>
<properties>
<ehcache.version>2.6.11</ehcache.version>
<fastjson.version>1.2.23</fastjson.version>
<jedis.version>2.9.0</jedis.version>
<protostuff.version>1.6.0</protostuff.version>
<spring.version>4.2.8.RELEASE</spring.version>
</properties>
<dependencies>
<!-- ehcache -->
<dependency>
<groupId>net.sf.ehcache</groupId>
<artifactId>ehcache-core</artifactId>
<version>${ehcache.version}</version>
</dependency>
<dependency>
<groupId>com.alibaba</groupId>
<artifactId>fastjson</artifactId>
<version>${fastjson.version}</version>
</dependency>
<!-- redis -->
<dependency>
<groupId>redis.clients</groupId>
<artifactId>jedis</artifactId>
<version>${jedis.version}</version>
</dependency>
<!-- protostuff -->
<dependency>
<groupId>io.protostuff</groupId>
<artifactId>protostuff-core</artifactId>
<version>${protostuff.version}</version>
</dependency>
<dependency>
<groupId>io.protostuff</groupId>
<artifactId>protostuff-runtime</artifactId>
<version>${protostuff.version}</version>
</dependency>
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-core</artifactId>
<version>${spring.version}</version>
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-api</artifactId>
<version>1.7.25</version>
</dependency>
<dependency>
<groupId>com.googlecode.xmemcached</groupId>
<artifactId>xmemcached</artifactId>
<version>2.4.3</version>
</dependency>
</dependencies>
</project>
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Java
1
https://gitee.com/281907117.com/common-cache.git
git@gitee.com:281907117.com/common-cache.git
281907117.com
common-cache
common-cache
master

搜索帮助

23e8dbc6 1850385 7e0993f3 1850385