If you haven't already, this is the time to install the prerequisite for today's workshop!
There is a couple things required to do today's workshop:
- Java (version 17)
- A Java IDE - we'll show how you install Intellij, since that comes with Gradle
- If you choose a different IDE than IntelliJ - install Gradle
- JUnit 5 - the testing library we will use
- Download the JDK installer, version 17: https://www.oracle.com/java/technologies/downloads/#jdk17-windows
- Choose the "x64 Installer" https://download.oracle.com/java/17/latest/jdk-17_windows-x64_bin.exe
- Find the file in your
Download
folder, and double-click the file to start it. - Follow the instructions provided by the installer - in general, the default settings are usually good-to-go.
- (Optional) Delete the
.exe
file after Java has been successfully installed
- Download the required file (64-bit ARM) https://download.oracle.com/java/20/latest/jdk-20_linux-aarch64_bin.tar.gz
- Unpack the tarball and install the downloaded JDK
$ tar zxvf jdk-17_linux-x64_bin.tar.gz
- Download the required file (64-bit ARM) https://download.oracle.com/java/20/latest/jdk-20_macos-aarch64_bin.dmg
- Find and double-click on the downloaded file to start it.
- Download IntelliJ (default link for Windows, select for your OS) https://www.jetbrains.com/idea/download/#section=windows
⚠ Only required if you chose another IDE than IntelliJ in the last step.
JUnit is the unit testing library for Java we will be using this workshop. Might already be installed from your previous steps