Prerequisites

Systeminfos

Vor der Installation achten Sie, ob Ihr System dafür gut genug ist.

Info
SeniorGames braucht Java 23, Maven, und Docker zum Benutzen.

Installations Guides

Wählen Sie Ihr System und folgen Sie dem Guide.

Windows Installation

  1. Java 23

    • Download from Oracle’s official website
    • Run the installer and follow the on-screen instructions
    • Verify installation with java --version in Command Prompt
  2. Maven

    • Download the latest binary zip archive
    • Extract to a directory of your choice (e.g., C:\Program Files\Maven)
    • Add Maven’s bin directory to your system’s PATH variable
    • Verify installation with mvn -v
  3. Docker Desktop

    • Download from the official Docker website
    • Run the installer and follow the instructions
    • Start Docker Desktop from the Start menu

macOS Installation

  1. Java 23

    • Download from Oracle’s official website
    • Run the installer and follow the on-screen instructions
    • Verify installation with java --version in Terminal
  2. Maven

    • Install via Homebrew: brew install maven
    • Or download manually from Maven’s website
    • Verify installation with mvn -v
  3. Docker Desktop

    • Download from the official Docker website
    • Follow the installation instructions
    • Launch Docker Desktop from Applications

Linux Installation

Wählen Sie Ihre Distribution:

Arch Linux

# Install required packages
sudo pacman -S docker docker-compose maven jdk-openjdk

# Start and enable Docker service
sudo systemctl start docker
sudo systemctl enable docker

# Add your user to the docker group (requires logout/login)
sudo usermod -aG docker $USER

Debian/Ubuntu

# Update package index
sudo apt update

# Install Docker
sudo apt install docker.io docker-compose maven

# Install Java 23
sudo apt install openjdk-23-jdk

# Start and enable Docker service
sudo systemctl start docker
sudo systemctl enable docker

# Add your user to the docker group (requires logout/login)
sudo usermod -aG docker $USER

OpenSUSE

# Install required packages
sudo zypper install docker maven java-23-openjdk

# Start and enable Docker service
sudo systemctl start docker
sudo systemctl enable docker

# Add your user to the docker group (requires logout/login)
sudo usermod -aG docker $USER

Fedora

# Install required packages
sudo dnf install docker maven java-23-openjdk

# Start and enable Docker service
sudo systemctl start docker
sudo systemctl enable docker

# Add your user to the docker group (requires logout/login)
sudo usermod -aG docker $USER

Verify Installation

Nach der Installation können Sie hiermit testen:

# Für Java Version
java --version

# Für Maven Version
mvn --version

# Für Docker Version
docker --version