<?xml version="1.0" encoding="UTF-8"?>
<project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://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>com.mydataharbor</groupId>
    <artifactId>mydataharbor-plugin</artifactId>
    <version>1.0.4</version>
  </parent>
  <groupId>com.mydataharbor</groupId>
  <artifactId>mydataharbor-redis</artifactId>
  <version>1.1.0</version>
  <packaging>pom</packaging>
  <description>redis相关</description>
  <licenses>
    <license>
      <name>GNU General Public License v3.0</name>
      <url>https://www.gnu.org/licenses/gpl-3.0.txt</url>
    </license>
  </licenses>
  <modules>
    <module>mydataharbor-sink-redis</module>
    <module>mydataharbor-redis-plugin</module>
    <module>mydataharbor-redis-common</module>
  </modules>
  <properties>
    <maven.compiler.source>1.8</maven.compiler.source>
    <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
    <maven.compiler.target>1.8</maven.compiler.target>
  </properties>
  <dependencyManagement>
    <dependencies>
      <dependency>
        <groupId>io.lettuce</groupId>
        <artifactId>lettuce-core</artifactId>
        <version>6.1.3.RELEASE</version>
      </dependency>
    </dependencies>
  </dependencyManagement>
</project>
