From e5b9cf56bacdf037db8646e33e1eee51c2cf2159 Mon Sep 17 00:00:00 2001 From: Gary Russell Date: Tue, 3 Dec 2019 08:59:37 -0500 Subject: [PATCH] Quick Start Doc Polishing (version) --- src/reference/asciidoc/quick-tour.adoc | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) diff --git a/src/reference/asciidoc/quick-tour.adoc b/src/reference/asciidoc/quick-tour.adoc index 6a28f083..19709359 100644 --- a/src/reference/asciidoc/quick-tour.adoc +++ b/src/reference/asciidoc/quick-tour.adoc @@ -28,6 +28,28 @@ compile 'org.springframework.kafka:spring-kafka:{project-version}' ---- ==== +IMPORTANT: When using Spring Boot, omit the version and Boot will automatically bring in the correct version that is compatible with your Boot version: + +==== +[source,xml,subs="+attributes"] +---- + + org.springframework.kafka + spring-kafka + +---- +==== + +The following example shows how to do so with Gradle: + +==== +[source,groovy,subs="+attributes"] +---- +compile 'org.springframework.kafka:spring-kafka' +---- +==== + + [[compatibility]] ==== Compatibility