From 648db6d1ea2dc2fbf216e466e6fd84be91c72cbe Mon Sep 17 00:00:00 2001 From: Moritz Halbritter Date: Mon, 9 Jan 2023 15:25:27 +0100 Subject: [PATCH] Remove reference to spring-cli run command from documentation --- .../src/docs/asciidoc/getting-started/installing.adoc | 1 - .../docs/asciidoc/getting-started/introducing-spring-boot.adoc | 1 - 2 files changed, 2 deletions(-) diff --git a/spring-boot-project/spring-boot-docs/src/docs/asciidoc/getting-started/installing.adoc b/spring-boot-project/spring-boot-docs/src/docs/asciidoc/getting-started/installing.adoc index abbe73893e0..cc7c29769eb 100644 --- a/spring-boot-project/spring-boot-docs/src/docs/asciidoc/getting-started/installing.adoc +++ b/spring-boot-project/spring-boot-docs/src/docs/asciidoc/getting-started/installing.adoc @@ -66,7 +66,6 @@ More details on getting started with Spring Boot and Gradle can be found in the [[getting-started.installing.cli]] === Installing the Spring Boot CLI The Spring Boot CLI (Command Line Interface) is a command line tool that you can use to quickly prototype with Spring. -It lets you run https://groovy-lang.org/[Groovy] scripts, which means that you have a familiar Java-like syntax without so much boilerplate code. You do not need to use the CLI to work with Spring Boot, but it is a quick way to get a Spring application off the ground without an IDE. diff --git a/spring-boot-project/spring-boot-docs/src/docs/asciidoc/getting-started/introducing-spring-boot.adoc b/spring-boot-project/spring-boot-docs/src/docs/asciidoc/getting-started/introducing-spring-boot.adoc index d22ad771955..321af9f80e0 100644 --- a/spring-boot-project/spring-boot-docs/src/docs/asciidoc/getting-started/introducing-spring-boot.adoc +++ b/spring-boot-project/spring-boot-docs/src/docs/asciidoc/getting-started/introducing-spring-boot.adoc @@ -5,7 +5,6 @@ We take an opinionated view of the Spring platform and third-party libraries, so Most Spring Boot applications need very little Spring configuration. You can use Spring Boot to create Java applications that can be started by using `java -jar` or more traditional war deployments. -We also provide a command line tool that runs "`spring scripts`". Our primary goals are: