Skip to content

Instantly share code, notes, and snippets.

@pm-hwks
Last active June 30, 2020 22:22
Show Gist options
  • Save pm-hwks/eaa5ac836057ea6f6b1f9db4f29192ac to your computer and use it in GitHub Desktop.
Save pm-hwks/eaa5ac836057ea6f6b1f9db4f29192ac to your computer and use it in GitHub Desktop.
[MacOS Java installation using Homebrew ] Install and manage multiple versions of Java using Homebrew on Macos #macos #java #brew #homebrew
## Reference : https://daviseford.com/blog/2017/12/18/installing-nifi.html
# List all versions of java on macos
/usr/libexec/java_home -V
# Allow brew to lookup versions
brew tap caskroom/versions
# Install Java8
brew cask install java8
# Set Java Home
export JAVA_HOME=$(/usr/libexec/java_home -v1.8)
## openjdk
# Reference : https://github.com/AdoptOpenJDK/homebrew-openjdk
brew tap AdoptOpenJDK/openjdk
brew cask install adoptopenjdk/openjdk/adoptopenjdk8
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment