Skip to content

Latest commit

 

History

History
46 lines (35 loc) · 2.18 KB

README_setup.md

File metadata and controls

46 lines (35 loc) · 2.18 KB

Hello there! 👋

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:

  1. Java (version 17)
  2. A Java IDE - we'll show how you install Intellij, since that comes with Gradle
  3. If you choose a different IDE than IntelliJ - install Gradle
  4. JUnit 5 - the testing library we will use

Steps

1. Install Java

Windows

https://docs.oracle.com/en/java/javase/17/install/installation-jdk-microsoft-windows-platforms.html#GUID-61460339-5500-40CC-9006-D4FC3FBCFC0D

Linux/Ubuntu

https://docs.oracle.com/en/java/javase/17/install/installation-jdk-linux-platforms.html#GUID-737A84E4-2EFF-4D38-8E60-3E29D1B884B8

macOS

https://docs.oracle.com/en/java/javase/17/install/installation-jdk-macos.html#GUID-E8A251B6-D9A9-4276-ABC8-CC0DAD62EA33


2. Install a Java IDE (recommending IntelliJ)


3. Install Gradle

⚠ Only required if you chose another IDE than IntelliJ in the last step.


4. Install JUnit 5

JUnit is the unit testing library for Java we will be using this workshop. Might already be installed from your previous steps