Make it explicit that stream does not depend on a web server

This commit is contained in:
Dave Syer
2018-04-24 14:10:37 +01:00
parent 0f8c1ce860
commit 04f917c113
7 changed files with 17 additions and 5 deletions

View File

@@ -26,6 +26,16 @@
<dependency>
<groupId>org.springframework.cloud</groupId>
<artifactId>spring-cloud-stream</artifactId>
<exclusions>
<exclusion>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-actuator</artifactId>
</exclusion>
<exclusion>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-web</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>org.springframework.cloud</groupId>