This repository was archived by the owner on Sep 16, 2023. It is now read-only.

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed
Original file line numberDiff line numberDiff line change
@@ -24,25 +24,25 @@ You will need to follow these prerequisite steps in order to run these samples:
2424
2525
**Note:** Authenticating with Application Default Credentials is convenient to use during development, but we recommend [alternate methods of authentication](https://cloud.google.com/docs/authentication/production) during production use.
2626
27-
3. Install the GraalVM compiler.
27+
3. Install the native image compiler.
2828
29-
You can follow the [official installation instructions](https://www.graalvm.org/docs/getting-started/#install-graalvm) from the GraalVM website.
29+
You can follow the [official installation instructions](https://www.graalvm.org/docs/getting-started/#install-graalvm).
3030
After following the instructions, ensure that you install the Native Image extension installed by running:
3131
3232
```
3333
gu install native-image
3434
```
3535
36-
Once you finish following the instructions, verify that the default version of Java is set to the GraalVM version by running `java -version` in a terminal.
36+
Once you finish following the instructions, verify that the default version of Java is set to the correct version by running `java -version` in a terminal.
3737
3838
You will see something similar to the below output:
3939
4040
```
4141
$ java -version
4242
43-
openjdk 11.0.14 2022-01-18
44-
OpenJDK Runtime Environment GraalVM CE 22.0.0.2 (build 11.0.14+9-jvmci-22.0-b05)
45-
OpenJDK 64-Bit Server VM GraalVM CE 22.0.0.2 (build 11.0.14+9-jvmci-22.0-b05, mixed mode, sharing)
43+
openjdk version "17.0.3" 2022-04-19
44+
OpenJDK Runtime Environment GraalVM CE 22.1.0 (build 17.0.3+7-jvmci-22.1-b06)
45+
OpenJDK 64-Bit Server VM GraalVM CE 22.1.0 (build 17.0.3+7-jvmci-22.1-b06, mixed mode, sharing)
4646
4747
```
4848
@@ -58,7 +58,7 @@ Navigate to this directory in a new terminal.
5858
export LOCATION_ID=us-east1
5959
```
6060
61-
2. Compile the application using the Native Image Compiler. This step may take a few minutes.
61+
2. Compile the application using the native image Compiler. This step may take a few minutes.
6262
6363
```
6464
$ mvn package -P native

0 commit comments

Comments
 (0)