Skip to content

Commit 1ae44da

Browse files
committed
Doc update for scala 2.12
Fixes #1058
1 parent a4c48a1 commit 1ae44da

File tree

1 file changed

+11
-4
lines changed

1 file changed

+11
-4
lines changed

src/reference/asciidoc/appendix.adoc

Lines changed: 11 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -18,38 +18,45 @@ When you use `spring-kafka-test` (version 2.2.x) with the 2.1.x `kafka-clients`
1818
<groupId>org.springframework.kafka</groupId>
1919
<artifactId>spring-kafka-test</artifactId>
2020
<version>${spring.kafka.version}</version>
21+
<exclusions>
22+
<exclusion>
23+
<groupId>org.apache.kafka</groupId>
24+
<artifactId>kafka_2.11</artifactId>
25+
</exclusion>
26+
</exclusions>
2127
<scope>test</scope>
2228
</dependency>
2329
2430
<dependency>
2531
<groupId>org.apache.kafka</groupId>
2632
<artifactId>kafka-clients</artifactId>
27-
<version>2.1.0</version>
33+
<version>2.1.1</version>
2834
</dependency>
2935
3036
<dependency>
3137
<groupId>org.apache.kafka</groupId>
3238
<artifactId>kafka-clients</artifactId>
33-
<version>2.1.0</version>
39+
<version>2.1.1</version>
3440
<classifier>test</classifier>
3541
</dependency>
3642
3743
<dependency>
3844
<groupId>org.apache.kafka</groupId>
3945
<artifactId>kafka_2.12</artifactId>
40-
<version>2.1.0</version>
46+
<version>2.1.1</version>
4147
<scope>test</scope>
4248
</dependency>
4349
4450
<dependency>
4551
<groupId>org.apache.kafka</groupId>
4652
<artifactId>kafka_2.12</artifactId>
47-
<version>2.1.0</version>
53+
<version>2.1.1</version>
4854
<classifier>test</classifier>
4955
<scope>test</scope>
5056
</dependency>
5157
----
5258
====
59+
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.
5360
////
5461

5562
[appendix]

0 commit comments

Comments
 (0)