Easily change JDK versions

Managing JDK installations and switching between versions can be a hassle, but SDKMAN makes it easy.

Easily change JDK versions

Have you had the pleasure of installing a specific JDK? Or have a need to switch between multiple JDKs depending on what project you are working on? If so, you know this can be a pain in the ass. Good news though! There is a tool that makes this easy as pie! SDKMAN

How to download

curl -s "[https://get.sdkman.io](https://get.sdkman.io/)" | bash

List the available JDKs

sdk list java

Install a JDK version

sdk install java 11.0.2-open

Use a specific JDK version

sdk use java 11.0.2-open