Skip to content

Commit

Permalink
Add kafka-streams to version override appendix
Browse files Browse the repository at this point in the history
  • Loading branch information
garyrussell committed Jun 9, 2020
1 parent dfe9f48 commit b226d6c
Showing 1 changed file with 16 additions and 8 deletions.
24 changes: 16 additions & 8 deletions src/reference/asciidoc/appendix.adoc
Expand Up @@ -29,6 +29,13 @@ When you use `spring-kafka-test` (version 2.4.x) with Spring Boot, you need to o
<version>2.4.1</version>
</dependency>
<!-- optional - only needed when using kafka-streams -->
<dependency>
<groupId>org.apache.kafka</groupId>
<artifactId>kafka-streams</artifactId>
<version>2.4.1</version>
</dependency>
<dependency>
<groupId>org.apache.kafka</groupId>
<artifactId>kafka-clients</artifactId>
Expand Down Expand Up @@ -61,15 +68,16 @@ When you use `spring-kafka-test` (version 2.4.x) with Spring Boot, you need to o
----
dependencies {
implementation 'org.springframework.kafka:spring-kafka:{project-version}'
implementation 'org.springframework.kafka:spring-kafka:{project-version}'
implementation 'org.apache.kafka:kafka-clients:2.4.1'
testImplementation ('org.springframework.kafka:spring-kafka-test:{project-version}') {
exclude module: 'kafka_2.11'
}
testImplementation 'org.apache.kafka:kafka-clients:2.4.1:test'
testImplementation 'org.apache.kafka:kafka_2.12:2.4.1'
testImplementation 'org.apache.kafka:kafka_2.12:2.4.1:test'
implementation 'org.apache.kafka:kafka-clients:2.4.1'
implementation 'org.apache.kafka:kafka-streams:2.4.1' // optional - only needed when using kafka-streams
testImplementation ('org.springframework.kafka:spring-kafka-test:{project-version}') {
exclude module: 'kafka_2.11'
}
testImplementation 'org.apache.kafka:kafka-clients:2.4.1:test'
testImplementation 'org.apache.kafka:kafka_2.12:2.4.1'
testImplementation 'org.apache.kafka:kafka_2.12:2.4.1:test'
}
----
Expand Down

0 comments on commit b226d6c

Please sign in to comment.