pom.xml 874 B

1234567891011121314151617181920212223
  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>happy-cloud-starter</artifactId>
  7. <groupId>org.happyframework.cloud</groupId>
  8. <version>2.2.0</version>
  9. </parent>
  10. <modelVersion>4.0.0</modelVersion>
  11. <artifactId>happy-cloud-starter-rabbitmq</artifactId>
  12. <version>2.2.0</version>
  13. <description>happy-cloud-starter-消息队列</description>
  14. <dependencies>
  15. <!-- 消息总线 rabbitmq -->
  16. <dependency>
  17. <groupId>org.springframework.cloud</groupId>
  18. <artifactId>spring-cloud-starter-bus-amqp</artifactId>
  19. </dependency>
  20. </dependencies>
  21. </project>