Skip to content

Commit

Permalink
Doc update for scala 2.12
Browse files Browse the repository at this point in the history
Fixes #1058
  • Loading branch information
garyrussell committed Apr 4, 2019
1 parent 9dddf2f commit 5601017
Showing 1 changed file with 13 additions and 6 deletions.
19 changes: 13 additions & 6 deletions src/reference/asciidoc/appendix.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -16,38 +16,45 @@ When you use `spring-kafka-test` (version 2.2.x) with the 2.1.x `kafka-clients`
<groupId>org.springframework.kafka</groupId>
<artifactId>spring-kafka-test</artifactId>
<version>${spring.kafka.version}</version>
<exclusions>
<exclusion>
<groupId>org.apache.kafka</groupId>
<artifactId>kafka_2.11</artifactId>
</exclusion>
</exclusions>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.apache.kafka</groupId>
<artifactId>kafka-clients</artifactId>
<version>2.1.0</version>
<version>2.1.1</version>
</dependency>
<dependency>
<groupId>org.apache.kafka</groupId>
<artifactId>kafka-clients</artifactId>
<version>2.1.0</version>
<version>2.1.1</version>
<classifier>test</classifier>
</dependency>
<dependency>
<groupId>org.apache.kafka</groupId>
<artifactId>kafka_2.11</artifactId>
<version>2.1.0</version>
<artifactId>kafka_2.12</artifactId>
<version>2.1.1</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.apache.kafka</groupId>
<artifactId>kafka_2.11</artifactId>
<version>2.1.0</version>
<artifactId>kafka_2.12</artifactId>
<version>2.1.1</version>
<classifier>test</classifier>
<scope>test</scope>
</dependency>
----
====
Note that when switching to scala 2.12 (recommended for 2.1.x and higher), the 2.11 version must be excluded from spring-kafka-test.

[appendix]
[[history]]
Expand Down

0 comments on commit 5601017

Please sign in to comment.