2 Star 0 Fork 3

ck / spring-cloud-stream-demo

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
pom.xml 2.71 KB
一键复制 编辑 原始数据 按行查看 历史
WXchengkun 提交于 2020-04-02 20:53 . spring-cloud-stream整合RabbitMQ
<?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 https://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId>
<version>2.2.4.RELEASE</version>
<relativePath/> <!-- lookup parent from repository -->
</parent>
<groupId>com.chengkun</groupId>
<artifactId>spring-cloud-stream</artifactId>
<version>0.0.1-SNAPSHOT</version>
<name>spring-cloud-stream</name>
<description>Demo project for Spring Boot</description>
<modules>
<module>spring-cloud-stream-kafka-producer</module>
<module>spring-cloud-stream-kafka-consumer1</module>
<module>spring-cloud-stream-kafka-consumer2</module>
<module>spring-cloud-stream-rabbit-producer</module>
<module>spring-cloud-stream-rabbit-consumer1</module>
<module>spring-cloud-stream-rabbit-consumer2</module>
</modules>
<properties>
<java.version>1.8</java.version>
<spring-cloud.version>Hoxton.SR3</spring-cloud.version>
</properties>
<dependencies>
<dependency>
<groupId>org.springframework.cloud</groupId>
<artifactId>spring-cloud-stream</artifactId>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-test</artifactId>
<scope>test</scope>
<exclusions>
<exclusion>
<groupId>org.junit.vintage</groupId>
<artifactId>junit-vintage-engine</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>org.springframework.cloud</groupId>
<artifactId>spring-cloud-stream-test-support</artifactId>
<scope>test</scope>
</dependency>
</dependencies>
<dependencyManagement>
<dependencies>
<dependency>
<groupId>org.springframework.cloud</groupId>
<artifactId>spring-cloud-dependencies</artifactId>
<version>${spring-cloud.version}</version>
<type>pom</type>
<scope>import</scope>
</dependency>
</dependencies>
</dependencyManagement>
<build>
<plugins>
<plugin>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-maven-plugin</artifactId>
</plugin>
</plugins>
</build>
</project>
1
https://gitee.com/i_have_dream/spring-cloud-stream-demo.git
git@gitee.com:i_have_dream/spring-cloud-stream-demo.git
i_have_dream
spring-cloud-stream-demo
spring-cloud-stream-demo
master

搜索帮助