From 47c28b0417a39ce9dc0adce3ea0d66f7a140b50f Mon Sep 17 00:00:00 2001 From: Spring Builds Date: Thu, 22 Sep 2022 21:45:48 +0000 Subject: [PATCH 1/2] Release v3.0.0-M5 --- gradle.properties | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gradle.properties b/gradle.properties index 7228eadfb959..c5330c8706d4 100644 --- a/gradle.properties +++ b/gradle.properties @@ -1,4 +1,4 @@ -version=3.0.0-SNAPSHOT +version=3.0.0-M5 org.gradle.caching=true org.gradle.parallel=true From 48e1ca397a24f17d12bab471dbe6db383f84aeb6 Mon Sep 17 00:00:00 2001 From: Anil Kumar Katta <4068191+anilkumarkatta204@users.noreply.github.com> Date: Tue, 18 Oct 2022 06:04:37 +0530 Subject: [PATCH 2/2] Documenation Changes for Switch Java version displayed in documentation #32746 --- .../docs/asciidoc/getting-started/first-application.adoc | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/spring-boot-project/spring-boot-docs/src/docs/asciidoc/getting-started/first-application.adoc b/spring-boot-project/spring-boot-docs/src/docs/asciidoc/getting-started/first-application.adoc index 3aadd4d53dd4..f0bdc26079d4 100644 --- a/spring-boot-project/spring-boot-docs/src/docs/asciidoc/getting-started/first-application.adoc +++ b/spring-boot-project/spring-boot-docs/src/docs/asciidoc/getting-started/first-application.adoc @@ -18,9 +18,9 @@ Before we begin, open a terminal and run the following commands to ensure that y [source,shell,indent=0,subs="verbatim"] ---- $ java -version - java version "1.8.0_102" - Java(TM) SE Runtime Environment (build 1.8.0_102-b14) - Java HotSpot(TM) 64-Bit Server VM (build 25.102-b14, mixed mode) + java version "17.0.4.1" 2022-08-18 LTS + Java(TM) SE Runtime Environment (build 17.0.4.1+1-LTS-2) + Java HotSpot(TM) 64-Bit Server VM (build 17.0.4.1+1-LTS-2, mixed mode, sharing) ---- [source,shell,indent=0,subs="verbatim"] @@ -28,7 +28,7 @@ Before we begin, open a terminal and run the following commands to ensure that y $ mvn -v Apache Maven 3.5.4 (1edded0938998edf8bf061f1ceb3cfdeccf443fe; 2018-06-17T14:33:14-04:00) Maven home: /usr/local/Cellar/maven/3.3.9/libexec - Java version: 1.8.0_102, vendor: Oracle Corporation + Java version: 17.0.4.1, vendor: Oracle Corporation ---- NOTE: This sample needs to be created in its own directory.