You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: documentation/modules/ROOT/pages/01_setup.adoc
+24-26Lines changed: 24 additions & 26 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -24,11 +24,11 @@ endif::workshop[]
24
24
25
25
[TIP]
26
26
====
27
-
Installing GraalVM is only required if you intend to build a https://quarkus.io/guides/building-native-image[native binary] for your local operating system and don't have a container runtime.
27
+
Installing GraalVM is only required if you intend to build a https://quarkus.io/guides/building-native-image[native binary] for your local operating system and don't have a container runtime.
28
28
Quarkus can simply build the native binary inside a container and this way you don't need to install and configure GraalVM on your machine.
29
29
====
30
30
31
-
NOTE: * You can also use Docker instead of Podman. The advantage of Podman is that it is 100% Free Open Source and does not need to run with elevated privileges.
31
+
NOTE: You can also use Docker instead of Podman. The advantage of Podman is that it is 100% Free Open Source and does not need to run with elevated privileges.
32
32
33
33
34
34
[tabs]
@@ -47,15 +47,15 @@ Please have them installed and configured before you get started with any of the
47
47
| https://podman-desktop.io/downloads[Podman Desktop for Mac, window="_blank"]
48
48
| https://podman-desktop.io/downloads[Podman Desktop for Linux, window="_blank"]
49
49
| https://podman-desktop.io/downloads[Podman Desktop for Windows, window="_blank"]
50
-
| **Java 17**
51
-
| `brew tap AdoptOpenJDK/openjdk && brew cask install adoptopenjdk17`
52
-
| `dnf install java-17-openjdk.x86_64`
53
-
| https://adoptopenjdk.net[Windows] (Make sure you set the `JAVA_HOME` environment variable and add `%JAVA_HOME%\bin` to your `PATH`)
54
-
| **Apache Maven 3.8.1+**
50
+
| **Java 21**
51
+
| `brew install --cask temurin@21`
52
+
| `dnf install java-21-openjdk.x86_64`
53
+
| https://adoptium.net[Windows] (Make sure you set the `JAVA_HOME` environment variable and add `%JAVA_HOME%\bin` to your `PATH`)
54
+
| **Apache Maven 3.8.6+**
55
55
| `brew install maven`
56
56
| `dnf install maven`
57
57
| https://maven.apache.org/download.cgi[Windows] (Make sure you set the `MAVEN_HOME` environment variable and add `%MAVEN_HOME%\bin` to your `PATH`)
58
-
| **Graal VM [Optional *]**
58
+
| **GraalVM [Optional *]**
59
59
| https://www.graalvm.org/latest/docs/getting-started/macos/[Download & install GraalVM for MacOS]
60
60
| https://www.graalvm.org/latest/docs/getting-started/linux/[Download & install GraalVM for Linux]
61
61
| https://www.graalvm.org/latest/docs/getting-started/windows/[Download & install GraalVM for Windows]
@@ -64,19 +64,19 @@ Please have them installed and configured before you get started with any of the
64
64
65
65
[TIP]
66
66
=====
67
-
If you are using Linux, MacOS or WSL on Windows you can also install the required tools using https://sdkman.io[SDKMAN!]. This allows easy version/distribution switching (and you can install the Quarkus CLI with it as well).
67
+
If you are using Linux, macOS or WSL on Windows, you can also install the required tools using https://sdkman.io[SDKMAN!]. This allows easy version/distribution switching (and you can install the Quarkus CLI with it as well).
68
68
Alternatively on Windows you can also try https://chocolatey.org/[Chocolatey] which works similarly.
69
69
[.console-input]
70
70
[source,bash,subs="+macros,+attributes"]
71
71
----
72
72
curl -s "https://get.sdkman.io" | bash
73
73
source "$HOME/.sdkman/bin/sdkman-init.sh"
74
74
.
75
-
sdk install java
75
+
sdk install java
76
76
sdk install maven
77
77
sdk install quarkus
78
-
sdk install java 17.0.8-graalce
79
-
sdk install jbang
78
+
sdk install java 21.0.3-tem
79
+
sdk install jbang
80
80
----
81
81
=====
82
82
--
@@ -129,7 +129,7 @@ Before we start setting up the environment, let's clone the tutorial sources and
The `work` folder in `$TUTORIAL_HOME` can be used to download the demo application resources and refer to them during the exercises. The `work` folder has a README with instructions on the source code repo and git commands to clone the sources.
@@ -145,7 +145,7 @@ This tutorial was developed and tested with:
0 commit comments