2022-06-01 23:59:01 +08:00
|
|
|
<?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.iocoder.cloud</groupId>
|
|
|
|
<artifactId>yudao-framework</artifactId>
|
|
|
|
<version>${revision}</version>
|
|
|
|
</parent>
|
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
<artifactId>yudao-spring-boot-starter-mq</artifactId>
|
|
|
|
<packaging>jar</packaging>
|
|
|
|
|
|
|
|
<name>${project.artifactId}</name>
|
|
|
|
<description>消息队列,基于 Redis Pub/Sub 实现广播消费,基于 Stream 实现集群消费</description>
|
|
|
|
<url>https://github.com/YunaiV/ruoyi-vue-pro</url>
|
|
|
|
|
|
|
|
<dependencies>
|
|
|
|
<!-- DB 相关 -->
|
|
|
|
<dependency>
|
|
|
|
<groupId>cn.iocoder.cloud</groupId>
|
|
|
|
<artifactId>yudao-spring-boot-starter-redis</artifactId>
|
|
|
|
</dependency>
|
2022-06-18 17:46:11 +08:00
|
|
|
|
|
|
|
<!-- MQ 相关 -->
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.alibaba.cloud</groupId>
|
|
|
|
<!-- 引入 Spring Cloud Alibaba Stream RocketMQ 相关依赖,将 RocketMQ 作为消息队列,并实现对其的自动配置 -->
|
|
|
|
<artifactId>spring-cloud-starter-stream-rocketmq</artifactId>
|
|
|
|
</dependency>
|
2022-06-01 23:59:01 +08:00
|
|
|
</dependencies>
|
|
|
|
|
|
|
|
</project>
|