Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Using java 21 for GraalVm Native snippet instead of 17 #1559

Merged
merged 1 commit into from
Nov 20, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 8 additions & 8 deletions src/docs/common/snippets/common-install-graalvm-sdkman.adoc
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
The easiest way to install https://www.graalvm.org[GraalVM] on Linux or Mac is to use https://sdkman.io/[SDKMan.io].

[source, bash]
.Java 17
.Java 21
----
sdk install java 17.0.12-graal
sdk install java 21.0.5-graal
----

[source, bash]
.Java 17
.Java 21
----
sdk use java 17.0.12-graal
sdk use java 21.0.5-graal
----

For installation on Windows, or for manual installation on Linux or Mac, see the https://www.graalvm.org/latest/docs/getting-started/[GraalVM Getting Started] documentation.
Expand All @@ -20,15 +20,15 @@ The previous command installs Oracle GraalVM, which is free to use in production
Alternatively, you can use the https://github.com/graalvm/graalvm-ce-builds/releases/[GraalVM Community Edition]:

[source, bash]
.Java 17
.Java 21
----
sdk install java 17.0.9-graalce
sdk install java 21.0.2-graalce
----

[source, bash]
.Java 17
.Java 21
----
sdk use java 17.0.9-graalce
sdk use java 21.0.2-graalce
----


Loading