70 lines
2.3 KiB
XML
70 lines
2.3 KiB
XML
<?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>com.zt.plat</groupId>
|
||
<artifactId>zt-framework</artifactId>
|
||
<version>${revision}</version>
|
||
</parent>
|
||
<modelVersion>4.0.0</modelVersion>
|
||
<artifactId>zt-spring-boot-starter-databus-client</artifactId>
|
||
<packaging>jar</packaging>
|
||
|
||
<name>${project.artifactId}</name>
|
||
<description>DataBus 客户端组件,负责接收数据变更并同步</description>
|
||
<url>https://github.com/YunaiV/ruoyi-vue-pro</url>
|
||
|
||
<dependencies>
|
||
<dependency>
|
||
<groupId>com.zt.plat</groupId>
|
||
<artifactId>zt-common</artifactId>
|
||
</dependency>
|
||
|
||
<!-- Databus API(事件类型枚举等) -->
|
||
<dependency>
|
||
<groupId>com.zt.plat</groupId>
|
||
<artifactId>zt-module-databus-api</artifactId>
|
||
<version>${revision}</version>
|
||
</dependency>
|
||
|
||
<!-- System API(用于默认Handler实现) -->
|
||
<dependency>
|
||
<groupId>com.zt.plat</groupId>
|
||
<artifactId>zt-module-system-api</artifactId>
|
||
<version>${revision}</version>
|
||
<optional>true</optional>
|
||
</dependency>
|
||
|
||
<dependency>
|
||
<groupId>cn.hutool</groupId>
|
||
<artifactId>hutool-all</artifactId>
|
||
</dependency>
|
||
|
||
<!-- MQ 相关 -->
|
||
<dependency>
|
||
<groupId>com.zt.plat</groupId>
|
||
<artifactId>zt-spring-boot-starter-mq</artifactId>
|
||
</dependency>
|
||
<dependency>
|
||
<groupId>com.zt.plat</groupId>
|
||
<artifactId>zt-spring-boot-starter-biz-tenant</artifactId>
|
||
</dependency>
|
||
|
||
<!-- Redis 相关 (用于幂等) --><!-- Web 相关 (用于HTTP接收) -->
|
||
<dependency>
|
||
<groupId>org.springframework.boot</groupId>
|
||
<artifactId>spring-boot-starter-web</artifactId>
|
||
<optional>true</optional>
|
||
</dependency>
|
||
|
||
<!-- Test -->
|
||
<dependency>
|
||
<groupId>com.zt.plat</groupId>
|
||
<artifactId>zt-spring-boot-starter-test</artifactId>
|
||
<scope>test</scope>
|
||
</dependency>
|
||
</dependencies>
|
||
|
||
</project>
|