Skip to content

Commit b8331c9

Browse files
committed
Update install directions to use Temurin JDK, and be less platform specific.
1 parent 7b14eaa commit b8331c9

File tree

1 file changed

+17
-4
lines changed

1 file changed

+17
-4
lines changed

BUILD.md

Lines changed: 17 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -62,14 +62,27 @@ If your main concern is with the `Core` you don't need to build and start the wh
6262

6363
## Other editors
6464

65-
### No editor, Ubuntu 24.04
65+
### No editor, Linux or macOS
66+
67+
The first step is to install Temurin JDB 17 - LTS.
68+
For Linux on x86, download:
69+
https://github.com/adoptium/temurin17-binaries/releases/download/jdk-17.0.15%2B6/OpenJDK17U-jdk_x64_linux_hotspot_17.0.15_6.tar.gz
70+
71+
For macOS users on Apple Silicon, download:
72+
https://github.com/adoptium/temurin17-binaries/releases/download/jdk-17.0.15%2B6/OpenJDK17U-jdk_aarch64_mac_hotspot_17.0.15_6.pkg
73+
74+
For everyone else, visit:
75+
https://adoptium.net/temurin/releases/?package=jdk&version=17&os=any&arch=any
76+
6677

6778
```
68-
sudo apt install openjdk-17-jdk openjdk-17-source
69-
export JAVA_HOME=/usr/lib/jvm/java-17-openjdk-amd64/
79+
export JAVA_HOME=/path/to/temurin/jdk-17.0.15+6/
7080
./gradlew build
71-
./gradlew tets
81+
./gradlew test
82+
7283
./gradlew package
84+
# or
85+
./gradlew run
7386
```
7487

7588
## Troubleshooting and Setup Tips (IntelliJ IDEA)

0 commit comments

Comments
 (0)