Adopt OpenJDK is officially deprecated and is moved to the Eclipse Temurin project. So the Homebrew Tap for AdoptOpenJdk is also deprecated.
So we must first remove the AdoptOpenJdk tap from Homebrew:
brew untap AdoptOpenJDK/openjdk |
In the next step we’ve two options. We can install the latest Temurin release or a specific one.
brew install --cask temurin |
brew tap homebrew/cask-versions |
brew install --cask temurin11 |
You can set the JAVA_HOME variable with the following snipset in your login script:
<pre class= "wp-block-syntaxhighlighter-code" > |
export JAVA_HOME=$(/usr/libexec/java_home) |
export JAVA_HOME=/Library/Java/JavaVirtualMachines/<version>/Contents/Home</version></pre> |