Skip to content

Commit 1b7d3df

Browse files
committed
Minor docs cleanup
Signed-off-by: Soby Chacko <[email protected]>
1 parent eec711c commit 1b7d3df

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

spring-kafka-docs/src/main/antora/modules/ROOT/pages/appendix/override-boot-dependencies.adoc

+3-3
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
When using Spring for Apache Kafka in a Spring Boot application, the Apache Kafka dependency versions are determined by Spring Boot's dependency management.
55
If you wish to use a different version of `kafka-clients` or `kafka-streams`, and use the embedded kafka broker for testing, you need to override their version used by Spring Boot dependency management; set the `kafka.version` property.
66

7-
NOTE: Default `kafka-clients` dependencies for Spring Boot 3.1.x and 3.2.x are 3.4.1 and 3.6.2 respectively.
7+
NOTE: Both Spring Boot 3.5.x and 3.4.x use the `kafka-clients` version 3.8.x and if users need to use 3.9.x client, they have to manually upgrade it using the method below.
88

99
Or, to use a different Spring for Apache Kafka version with a supported Spring Boot version, set the `spring-kafka.version` property.
1010

@@ -15,7 +15,7 @@ Maven::
1515
[source, xml, subs="+attributes", role="primary"]
1616
----
1717
<properties>
18-
<kafka.version>3.5.1</kafka.version>
18+
<kafka.version>4.0.0</kafka.version>
1919
<spring-kafka.version>{project-version}</spring-kafka.version>
2020
</properties>
2121
@@ -51,4 +51,4 @@ dependencies {
5151
----
5252
======
5353

54-
The test scope dependencies are only needed if you are using the embedded Kafka broker in tests.
54+
The test scope dependencies are only needed if you are using the embedded Kafka broker in tests.

0 commit comments

Comments
 (0)