From bfad7b81a7ac134439bdf71a8e3d7cbc64b909b5 Mon Sep 17 00:00:00 2001 From: Ilayaperumal Gopinathan Date: Thu, 6 Oct 2016 11:55:12 +0530 Subject: [PATCH] Use asciidoc property to specify spring boot version in Initializr Address review comments --- spring-cloud-stream-core-docs/pom.xml | 1 + .../src/main/asciidoc/spring-cloud-stream-overview.adoc | 4 +++- 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/spring-cloud-stream-core-docs/pom.xml b/spring-cloud-stream-core-docs/pom.xml index 30009b03e..7ce01dedc 100644 --- a/spring-cloud-stream-core-docs/pom.xml +++ b/spring-cloud-stream-core-docs/pom.xml @@ -103,6 +103,7 @@ ${project.version} ${project.version} ${github-tag} + ${spring-boot.version} diff --git a/spring-cloud-stream-core-docs/src/main/asciidoc/spring-cloud-stream-overview.adoc b/spring-cloud-stream-core-docs/src/main/asciidoc/spring-cloud-stream-overview.adoc index a0a8f1220..08115545e 100644 --- a/spring-cloud-stream-core-docs/src/main/asciidoc/spring-cloud-stream-overview.adoc +++ b/spring-cloud-stream-core-docs/src/main/asciidoc/spring-cloud-stream-overview.adoc @@ -1538,7 +1538,9 @@ For Spring Cloud Stream samples, please refer to the https://github.com/spring-c == Getting Started -To get started with creating Spring Cloud Stream applications, visit the https://start.spring.io[Spring Initializr] and create a new Maven project named "GreetingSource". Note that Spring Cloud Stream applications are known to work with Spring Boot versions 1.3.x and 1.4.x. In the _Search for dependencies_ text box type `Stream Rabbit` or `Stream Kafka` depending on what binder you want to use. +To get started with creating Spring Cloud Stream applications, visit the https://start.spring.io[Spring Initializr] and create a new Maven project named "GreetingSource". +Select Spring Boot {supported-spring-boot-version} in the dropdown. +In the _Search for dependencies_ text box type `Stream Rabbit` or `Stream Kafka` depending on what binder you want to use. Next, create a new class, `GreetingSource`, in the same package as the `GreetingSourceApplication` class. Give it the following code: