diff --git a/gradle.properties b/gradle.properties index 8eb9fb35154b..4729b3bd56e3 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 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.