From 088c4267b5ebfd8ff4e638ec9824c83a94c64ee2 Mon Sep 17 00:00:00 2001 From: Janne Valkealahti Date: Tue, 14 Jun 2022 21:07:17 +0100 Subject: [PATCH] Update docs - Polish getting started - Relates #433 --- spring-shell-docs/src/main/asciidoc/getting-started.adoc | 9 +-------- 1 file changed, 1 insertion(+), 8 deletions(-) diff --git a/spring-shell-docs/src/main/asciidoc/getting-started.adoc b/spring-shell-docs/src/main/asciidoc/getting-started.adoc index 316cf2bf..1137178a 100644 --- a/spring-shell-docs/src/main/asciidoc/getting-started.adoc +++ b/spring-shell-docs/src/main/asciidoc/getting-started.adoc @@ -14,13 +14,11 @@ and configures the `spring-boot-maven-plugin` to generate an executable über-ja ==== [source, xml] ---- -... org.springframework.boot spring-boot-starter - ... ---- ==== @@ -35,13 +33,11 @@ configuring only the necessary beans as needed: ==== [source, xml, subs=attributes+] ---- -... org.springframework.shell {spring-shell-starter} {project-version} -... ---- ==== @@ -95,9 +91,6 @@ java -jar target/demo-0.0.1-SNAPSHOT.jar ---- ==== -You are greeted by the following screen (the banner comes from Spring Boot and can be -https://docs.spring.io/spring-boot/docs/current/reference/htmlsingle/#boot-features-banner[customized]: - ==== [source] ---- @@ -110,7 +103,7 @@ A yellow `shell:>` prompt invites you to type commands. Type `add 1 2`, press `E ==== [source, bash] ---- -shell:>add 1 2 +shell:>add --a 1 --b 2 3 ---- ====