jEnv supports automatically changing JVMs based on current working directory
brew install jabba
brew install jenv
jenv init >> ~/.zshrc
# export plugin sets JAVA_HOME variable properly, both for shell and OS-level
jenv enable-plugin export
# This will update the local PATH variable, close shell after new JVM install
jabba install [email protected]
jabba ls
jenv add ~/.jabba/jdk/[email protected]/ # Adds 14, 14.0, 14.0.1 and [email protected]
# Use JDK whenever entering this directory (writes `.jenv` file)
jenv local 14
# Use JDK for this shell only
jenv shell 14
# Change global JDK
jenv global 14
Observed: 2020-05-28: By default jenv will point to version "system" and
echo $JAVA_HOME
/Users/jostein.gogstad/.jenv/versions/system
This directory doesn't exists. You need to either
jenv global 11
or
ln -s wherever-system-jdk-lives ~/.jenv/versions/system