<?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>
        <groupId>cn.com.yusys.yusp.common</groupId>
        <artifactId>commons</artifactId>
        <version>V4.3.1.20240630.RELEASE</version>
    </parent>
    <modelVersion>4.0.0</modelVersion>
    <artifactId>yusp-commons-data-sync</artifactId>
    <description>数据同步</description>
    <name>yusp-commons-data-sync</name>
    <packaging>pom</packaging>

    <modules>
        <module>yusp-commons-data-sync-client</module>
        <module>yusp-commons-data-sync-common</module>
        <module>yusp-commons-data-sync-server</module>
    </modules>

    <dependencies>
        <!-- Spring Cloud Stream RabbitMQ -->
        <dependency>
            <groupId>org.springframework.cloud</groupId>
            <artifactId>spring-cloud-starter-stream-rabbit</artifactId>
        </dependency>

        <!-- 数据库操作 -->
        <dependency>
            <groupId>cn.com.yusys.yusp.common</groupId>
            <artifactId>yusp-commons-starter-mybatisplus</artifactId>
        </dependency>
        <!-- 线程池工具 -->
        <dependency>
            <groupId>com.google.guava</groupId>
            <artifactId>guava</artifactId>
        </dependency>
        <dependency>
            <groupId>cn.com.yusys.yusp.common</groupId>
            <artifactId>yusp-commons-test</artifactId>
            <scope>test</scope>
        </dependency>
        <dependency>
            <groupId>com.esotericsoftware</groupId>
            <artifactId>kryo</artifactId>
        </dependency>
    </dependencies>
</project>
