diff --git a/src/reference/asciidoc/appendix.adoc b/src/reference/asciidoc/appendix.adoc index 921ad27c..f6287bcc 100644 --- a/src/reference/asciidoc/appendix.adoc +++ b/src/reference/asciidoc/appendix.adoc @@ -1,7 +1,7 @@ [[deps-for-11x]] -== Override Dependencies to use the 1.1.x kafka-clients +== Override Dependencies to use the 1.1.x/2.0.x kafka-clients with an Embedded Broker -When using `spring-kafka-test` (_version 2.1.x_, starting with _version 2.1.5_) with the 1.1.x `kafka-clients` jar, you will need to override certain transitive dependencies as follows: +When using `spring-kafka-test` (version 2.1.x, starting with version 2.1.5) with the 1.1.x `kafka-clients` jar, you will need to override certain transitive dependencies as follows: [source, xml] ---- @@ -21,32 +21,35 @@ When using `spring-kafka-test` (_version 2.1.x_, starting with _version 2.1.5_) org.apache.kafka kafka-clients - 1.1.0 + 1.1.1 org.apache.kafka kafka-clients - 1.1.0 + 1.1.1 test org.apache.kafka kafka_2.11 - 1.1.0 + 1.1.1 test org.apache.kafka kafka_2.11 - 1.1.0 + 1.1.1 test test ---- +Starting with version 2.1.9, the 2.0.0 `kafka-clients` jar can be used with similar overrides to those described above. + +[appendix] [[history]] == Change History diff --git a/src/reference/asciidoc/quick-tour.adoc b/src/reference/asciidoc/quick-tour.adoc index 577b6678..efa5e848 100644 --- a/src/reference/asciidoc/quick-tour.adoc +++ b/src/reference/asciidoc/quick-tour.adoc @@ -28,10 +28,12 @@ compile 'org.springframework.kafka:spring-kafka:{spring-kafka-version}' [[compatibility]] ===== Compatibility -- Apache Kafka Clients 1.0.0 +- Apache Kafka Clients 1.0.x or later (See note below) - Spring Framework 5.0.x - Minimum Java version: 8 +NOTE: The framework has been tested with `kafka-clients` 1.1.1 and 2.0.0; when using the `spring-kafka-test` embedded Kafka broker, you must override other jars, as described in <>. + ===== Very, Very Quick Using plain Java to send and receive a message: