2013-11-18 18:54:33 +08:00
|
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
2017-06-01 05:27:23 +08:00
|
|
|
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
2019-03-17 00:01:11 +08:00
|
|
|
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd">
|
2013-11-18 18:54:33 +08:00
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
<parent>
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
<artifactId>spring-boot-starters</artifactId>
|
2017-06-01 05:27:23 +08:00
|
|
|
<version>${revision}</version>
|
2013-11-18 18:54:33 +08:00
|
|
|
</parent>
|
2016-01-26 15:31:34 +08:00
|
|
|
<artifactId>spring-boot-starter-data-redis</artifactId>
|
|
|
|
<name>Spring Boot Data Redis Starter</name>
|
2016-03-30 00:19:29 +08:00
|
|
|
<description>Starter for using Redis key-value data store with Spring Data Redis and
|
2017-10-04 22:08:27 +08:00
|
|
|
the Lettuce client</description>
|
2013-11-18 18:54:33 +08:00
|
|
|
<properties>
|
2017-06-01 05:27:23 +08:00
|
|
|
<main.basedir>${basedir}/../../..</main.basedir>
|
2013-11-18 18:54:33 +08:00
|
|
|
</properties>
|
|
|
|
<dependencies>
|
2014-06-09 13:37:48 +08:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
<artifactId>spring-boot-starter</artifactId>
|
|
|
|
</dependency>
|
2013-11-18 18:54:33 +08:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.springframework.data</groupId>
|
|
|
|
<artifactId>spring-data-redis</artifactId>
|
2017-04-06 20:22:53 +08:00
|
|
|
<exclusions>
|
|
|
|
<exclusion>
|
|
|
|
<groupId>org.slf4j</groupId>
|
|
|
|
<artifactId>jcl-over-slf4j</artifactId>
|
|
|
|
</exclusion>
|
|
|
|
</exclusions>
|
2013-11-18 18:54:33 +08:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
2017-10-04 22:08:27 +08:00
|
|
|
<groupId>io.lettuce</groupId>
|
|
|
|
<artifactId>lettuce-core</artifactId>
|
2013-11-18 18:54:33 +08:00
|
|
|
</dependency>
|
|
|
|
</dependencies>
|
|
|
|
</project>
|