<?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">
|
<parent>
|
<artifactId>kidgrow-commons</artifactId>
|
<groupId>com.kidgrow</groupId>
|
<version>1.0</version>
|
</parent>
|
<modelVersion>4.0.0</modelVersion>
|
<packaging>jar</packaging>
|
<artifactId>kidgrow-redis-spring-boot-starter</artifactId>
|
<description>redis通用组件</description>
|
<dependencies>
|
<dependency>
|
<groupId>com.kidgrow</groupId>
|
<artifactId>kidgrow-common-spring-boot-starter</artifactId>
|
|
</dependency>
|
<dependency>
|
<groupId>org.springframework.boot</groupId>
|
<artifactId>spring-boot-starter-data-redis</artifactId>
|
<exclusions>
|
<exclusion>
|
<groupId>io.lettuce</groupId>
|
<artifactId>lettuce-core</artifactId>
|
</exclusion>
|
</exclusions>
|
</dependency>
|
<dependency>
|
<groupId>commons-io</groupId>
|
<artifactId>commons-io</artifactId>
|
</dependency>
|
<dependency>
|
<groupId>io.lettuce</groupId>
|
<artifactId>lettuce-core</artifactId>
|
</dependency>
|
<dependency>
|
<groupId>com.alibaba</groupId>
|
<artifactId>fastjson</artifactId>
|
</dependency>
|
<dependency>
|
<groupId>org.apache.commons</groupId>
|
<artifactId>commons-pool2</artifactId>
|
</dependency>
|
|
<dependency>
|
<groupId>org.springframework.boot</groupId>
|
<artifactId>spring-boot-configuration-processor</artifactId>
|
<optional>true</optional>
|
</dependency>
|
</dependencies>
|
|
</project>
|