You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Enable the plugin by adding jdk-switch in plugins in your ~/.zshrc
If you have some extra settings about PATH variable, you may need to add jdk-switch-enable in ~/.zshrc to ensure JAVA_HOME was included in PATH.
plugins=( [plugins...] jdk-switch)
Usage
# use jdk-switch to switch between different jdk versions# switch to jdk 11
$ jdk-switch -v 11
# or (legacy support)
$ jdk-switch 11
# use 6,7,8 for jdk before jdk9
$ jdk-switch -v 8
# check activating jdk status
$ jdk-status
# scan for brew installed jdk and create symbolic links (optional, just a convenient way for IDE to locate JDK)
$ jdk-switch scan
Notice
This plugin works as a tiny tool to help you switch between different jdk versions by writing the jdk version you are currently using to a file and reloading the shell itself, so the setting would not be affected if you reload your shell and no additional useless part would show up in PATH. And that's also the original purpose of this plugin.
This plugin manages the environment variable like PATH, JAVA_HOME, so be cautious while changing these variables in your ~/.zshrc or anywhere else, especially when adding settings about configuring the java environment which has something to do with any of these variables, as the plugin setting might be overridden by your own setting.
About
An oh-my-zsh plugin for quickly switch between different jdk versions.