Skip to content

Commit 5b293fc

Browse files
committed
more updates to Windows instructions
1 parent e0e97cd commit 5b293fc

File tree

1 file changed

+13
-14
lines changed

1 file changed

+13
-14
lines changed

BUILDING.md

Lines changed: 13 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -108,10 +108,10 @@ Download and install Eclipse Temurin JDK versions 8, 11, 17 and 21, and GraalVM.
108108

109109
#### Windows
110110

111-
* Download and install JDK 8, 11, 17, and 21 [Eclipse Temurin releases](https://adoptium.net/temurin/releases/). Alternatively, if available, you can use `winget` or `scoop`:
111+
* Download and install JDK 8, 11, 17, and 21 [Eclipse Temurin releases](https://adoptium.net/temurin/releases/). Alternatively, you can use `winget` or `scoop`:
112112

113113
<details>
114-
<summary>Install JDKs using `winget`</summary>
114+
<summary>Install JDKs using winget</summary>
115115

116116
```pwsh
117117
winget install --id EclipseAdoptium.Temurin.8.JDK
@@ -123,11 +123,10 @@ Download and install Eclipse Temurin JDK versions 8, 11, 17 and 21, and GraalVM.
123123
</details>
124124
125125
<details>
126-
<summary>Install JDKs using `scoop`</summary>
126+
<summary>Install JDKs using scoop</summary>
127127
128128
```pwsh
129129
scoop bucket add java
130-
131130
scoop install temurin8-jdk
132131
scoop install temurin11-jdk
133132
scoop install temurin17-jdk
@@ -136,7 +135,7 @@ Download and install Eclipse Temurin JDK versions 8, 11, 17 and 21, and GraalVM.
136135

137136
</details>
138137

139-
* To add the required environment variables, run the following PowerShell commands for each SDK version, replacing the path with the correct version installed:
138+
* To add the required environment variables, run the following PowerShell commands for each SDK version, replacing the paths with the correct version installed:
140139
```pwsh
141140
[Environment]::SetEnvironmentVariable("JAVA_8_HOME", "C:\Program Files\Eclipse Adoptium\jdk-8.0.432.6-hotspot", [EnvironmentVariableTarget]::User)
142141
[Environment]::SetEnvironmentVariable("JAVA_11_HOME", "C:\Program Files\Eclipse Adoptium\jdk-11.0.25.9-hotspot", [EnvironmentVariableTarget]::User)
@@ -147,9 +146,6 @@ Download and install Eclipse Temurin JDK versions 8, 11, 17 and 21, and GraalVM.
147146
[Environment]::SetEnvironmentVariable("JAVA_HOME", "C:\Program Files\Eclipse Adoptium\jdk-8.0.432.6-hotspot", [EnvironmentVariableTarget]::User)
148147
```
149148

150-
> [!NOTE]
151-
> This scripts currently does _not_ install GraalVM due to license changes in October 2024 for GraalVM 17.0.13 and later.
152-
153149
### Install git
154150

155151
#### macOS
@@ -165,9 +161,7 @@ apt-get install git
165161

166162
#### Windows
167163

168-
Download and install the installer from [the official website](https://git-scm.com/download/win).
169-
170-
Alternatively, you can use `winget` or `scoop`:
164+
Download and install the installer from [the official website](https://git-scm.com/download/win). Alternatively, you can use `winget` or `scoop`:
171165

172166
<details>
173167
<summary>Install git using winget</summary>
@@ -205,14 +199,19 @@ https://docs.docker.com/desktop/setup/install/linux/
205199

206200
#### Windows
207201

208-
Use `winget` to install Docker Desktop:
202+
Download and install Docker Desktop from the offical website:<br/>
203+
https://docs.docker.com/desktop/setup/install/windows-install/
204+
205+
Alternatively, you can use `winget`:
206+
207+
<details>
208+
<summary>Install Docker Desktop using winget</summary>
209209

210210
```pwsh
211211
winget install --id Docker.DockerDesktop
212212
```
213213

214-
Alternatively, download and install Docker Desktop from the offical website:<br/>
215-
https://docs.docker.com/desktop/setup/install/windows-install/
214+
</details>
216215

217216
## Clone the repository and set up git
218217

0 commit comments

Comments
 (0)