pom.xml 845 B

123456789101112131415161718192021222324252627
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project xmlns="http://maven.apache.org/POM/4.0.0"
  3. xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  4. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  5. <parent>
  6. <artifactId>hnqz-common</artifactId>
  7. <groupId>com.qunzhixinxi</groupId>
  8. <version>3.9.0</version>
  9. </parent>
  10. <modelVersion>4.0.0</modelVersion>
  11. <artifactId>hnqz-common-mq</artifactId>
  12. <description>消息队列</description>
  13. <dependencies>
  14. <!-- 核心模块 -->
  15. <dependency>
  16. <groupId>com.qunzhixinxi</groupId>
  17. <artifactId>hnqz-common-core</artifactId>
  18. </dependency>
  19. <!-- 消息总线 rabbitmq -->
  20. <dependency>
  21. <groupId>org.springframework.cloud</groupId>
  22. <artifactId>spring-cloud-starter-bus-amqp</artifactId>
  23. </dependency>
  24. </dependencies>
  25. </project>