From bc37318fa208fb658c2ced4c2cff0e9559a48e3a Mon Sep 17 00:00:00 2001 From: Mark Paluch Date: Fri, 28 Oct 2016 13:33:11 +0200 Subject: [PATCH] Add version variable to reference docs. --- docs/src/main/asciidoc/quickstart.adoc | 55 +++++++++++++------------- 1 file changed, 27 insertions(+), 28 deletions(-) diff --git a/docs/src/main/asciidoc/quickstart.adoc b/docs/src/main/asciidoc/quickstart.adoc index f102c432..77a9d080 100644 --- a/docs/src/main/asciidoc/quickstart.adoc +++ b/docs/src/main/asciidoc/quickstart.adoc @@ -93,38 +93,38 @@ the test cases). Example Maven configuration: .pom.xml ==== -[source,xml,indent=0] +[source,xml,indent=0,subs="verbatim,quotes,attributes"] ---- - + + org.springframework.boot + spring-boot-starter-parent + 1.4.1.RELEASE + + + + + + org.springframework.cloud + spring-cloud-vault-starter-config + {spring-cloud-version} + + org.springframework.boot - spring-boot-starter-parent - 1.4.1.RELEASE - - + spring-boot-starter-test + test + + - - - org.springframework.cloud - spring-cloud-vault-starter-config - x.y.z - - + + + org.springframework.boot - spring-boot-starter-test - test - - + spring-boot-maven-plugin + + + - - - - org.springframework.boot - spring-boot-maven-plugin - - - - - + ---- ==== @@ -145,7 +145,6 @@ public class Application { public static void main(String[] args) { SpringApplication.run(Application.class, args); } - } ---- ====