You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
38 lines
1.4 KiB
38 lines
1.4 KiB
2 years ago
|
<?xml version="1.0" encoding="UTF-8"?>
|
||
|
<project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://maven.apache.org/POM/4.0.0"
|
||
|
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
|
||
|
<parent>
|
||
|
<groupId>com.dxhy.order</groupId>
|
||
|
<artifactId>order-management</artifactId>
|
||
|
<version>6.1.2-STD</version>
|
||
|
</parent>
|
||
|
<modelVersion>4.0.0</modelVersion>
|
||
|
|
||
|
<artifactId>order-rabbitmq-core</artifactId>
|
||
|
<description>rabbitMq封装层</description>
|
||
|
<version>6.1.2-STD</version>
|
||
|
|
||
|
<dependencies>
|
||
|
|
||
|
<!-- Spring Cloud Sleuth -->
|
||
|
<dependency>
|
||
|
<groupId>org.springframework.cloud</groupId>
|
||
|
<artifactId>spring-cloud-starter-sleuth</artifactId>
|
||
|
</dependency>
|
||
|
<!-- 如果是加了链路需要使用这个rabbit,如果不需要用springboot的 -->
|
||
|
<dependency>
|
||
|
<groupId>org.springframework.cloud</groupId>
|
||
|
<artifactId>spring-cloud-starter-stream-rabbit</artifactId>
|
||
|
</dependency>
|
||
|
|
||
|
<!-- Spring Boot Rabbitmq支持引用-->
|
||
|
<!-- <dependency>-->
|
||
|
<!-- <groupId>org.springframework.boot</groupId>-->
|
||
|
<!-- <artifactId>spring-boot-starter-amqp</artifactId>-->
|
||
|
<!-- <scope>compile</scope>-->
|
||
|
<!-- </dependency>-->
|
||
|
|
||
|
|
||
|
</dependencies>
|
||
|
</project>
|