

formula pages indicate for which platforms bottles (binary packages) are provided and therefore whether they are supported by Homebrew. Apple Silicon is now officially supported for installations in /opt/homebrew.

Major changes and deprecations since 2.7.0: The most significant changes since 2.7.0 are official Apple Silicon support and a new bottle format in formulae. JDK from the Eclipse Foundation (Adoptium) OpenJDK 64-Bit Server VM (build 25.362-b00, mixed mode)Ĭommand shows you what brew "knows" about temurin17 and the output I had before I installed it was => temurin17: 17.0.6,10 Prior to this java -version showed openjdk version "1.8.0_362" Now (as of April 12, 2023) when I run java -version Prior to this I ran these 2 command to get java 17 installed brew tap homebrew/cask-versions I also kept my old adoptopenjdk8 on my system but commented out this line from $HOME/.zshrc to remove java 8 from my path so it would not be executed when I ran java command # export execute my PATH with these 2 changes I ran source ~/.zshrc I also had to make the following changes to my $HOME/.zshrc file export PATH="/Library/Java/JavaVirtualMachines/temurin-17.jdk/Contents/Home/bin/:$PATH" To manage the java versions, and without an entry for java 17, I can't switch to it. I am using alias java8="unset JAVA_HOME export JAVA_HOME=`/usr/libexec/java_home -v 1.8` java -version"Īlias java11="unset JAVA_HOME export JAVA_HOME=`/usr/libexec/java_home -v 11` java -version"Īlias java16="unset JAVA_HOME export JAVA_HOME=`/usr/libexec/java_home -v 16` java -version"Īlias java17="unset JAVA_HOME export JAVA_HOME=`/usr/libexec/java_home -v 17` java -version" It returns /Library/Java/JavaVirtualMachines/adoptopenjdk-16.jdk/Contents/HomeĪnd there is no entry for 17 in /Library/Java/JavaVirtualMachines/

I can install 17 with brew install openjdkīut if I run /usr/libexec/java_home -v 17 However there seems to be no adoptopenjdk for 17. In order to install 8, 11 and 16 I ran: brew tap adoptopenjdk/openjdk I am trying to install jdk17 with brew, while also having java8, java11 and java16 installed.
