Skip to content

Commit 5601017

Browse files
committed
Doc update for scala 2.12
Fixes #1058
1 parent 9dddf2f commit 5601017

File tree

1 file changed

+13
-6
lines changed

1 file changed

+13
-6
lines changed

src/reference/asciidoc/appendix.adoc

Lines changed: 13 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -16,38 +16,45 @@ When you use `spring-kafka-test` (version 2.2.x) with the 2.1.x `kafka-clients`
1616
<groupId>org.springframework.kafka</groupId>
1717
<artifactId>spring-kafka-test</artifactId>
1818
<version>${spring.kafka.version}</version>
19+
<exclusions>
20+
<exclusion>
21+
<groupId>org.apache.kafka</groupId>
22+
<artifactId>kafka_2.11</artifactId>
23+
</exclusion>
24+
</exclusions>
1925
<scope>test</scope>
2026
</dependency>
2127
2228
<dependency>
2329
<groupId>org.apache.kafka</groupId>
2430
<artifactId>kafka-clients</artifactId>
25-
<version>2.1.0</version>
31+
<version>2.1.1</version>
2632
</dependency>
2733
2834
<dependency>
2935
<groupId>org.apache.kafka</groupId>
3036
<artifactId>kafka-clients</artifactId>
31-
<version>2.1.0</version>
37+
<version>2.1.1</version>
3238
<classifier>test</classifier>
3339
</dependency>
3440
3541
<dependency>
3642
<groupId>org.apache.kafka</groupId>
37-
<artifactId>kafka_2.11</artifactId>
38-
<version>2.1.0</version>
43+
<artifactId>kafka_2.12</artifactId>
44+
<version>2.1.1</version>
3945
<scope>test</scope>
4046
</dependency>
4147
4248
<dependency>
4349
<groupId>org.apache.kafka</groupId>
44-
<artifactId>kafka_2.11</artifactId>
45-
<version>2.1.0</version>
50+
<artifactId>kafka_2.12</artifactId>
51+
<version>2.1.1</version>
4652
<classifier>test</classifier>
4753
<scope>test</scope>
4854
</dependency>
4955
----
5056
====
57+
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.
5158

5259
[appendix]
5360
[[history]]

0 commit comments

Comments
 (0)