Exclude kafka server by default

It could be excluded in the bus starter, but no harm in doing
it here for 1.2.0
This commit is contained in:
Dave Syer
2016-10-13 14:43:05 +01:00
parent af43a16c91
commit 843e0de134

10
pom.xml
View File

@@ -115,6 +115,16 @@
<type>pom</type>
<scope>import</scope>
</dependency>
<dependency>
<groupId>org.springframework.cloud</groupId>
<artifactId>spring-cloud-starter-stream-kafka</artifactId>
<exclusions>
<exclusion>
<groupId>org.apache.kafka</groupId>
<artifactId>kafka_2.11</artifactId>
</exclusion>
</exclusions>
</dependency>
</dependencies>
</dependencyManagement>
</project>