SDKMAN! is a tool for managing parallel versions of multiple Software Development Kits on Unix-based systems. It’s useful for installing multiple versions of Java, Maven, Spring Initializer, etc.
Steps to install SDKMAN!
-
sudo apt install -y unzip zip curl
Installs curl, unzip, and zip.
- The
curl
tool is required to download the installation script. - The
unzip
andzip
tools are used in the installation script.
- The
-
curl -s "https://get.sdkman.io" | bash
Downloads and executes the installation script.
-
source ~/.sdkman/bin/sdkman-init.sh
Completes the installation.
More details
To check the SDKMAN! version, run:
sdk version