http://jdk.java.net/archive/
Suddenly I wanted to create a Java 8 development environment. Although it is for personal use, I will try using OpenJDK because it is a big deal. This time I will use Homebrew.
$ brew tap AdoptOpenJDK/openjdk
$ brew cask install adoptopenjdk8
The list of supported versions is here.
$ java -version
openjdk version "1.8.0_212"
OpenJDK Runtime Environment (AdoptOpenJDK)(build 1.8.0_212-b03)
OpenJDK 64-Bit Server VM (AdoptOpenJDK)(build 25.212-b03, mixed mode)
adoptopenjdk It is said that it is sponsored by IBM etc. in the community that provides builds of OpenJDK.
Even if it's not Homebrew It seems that you can drop the installer and binaries from the official website.
https://adoptopenjdk.net/archive.html
Is this more convenient for Windows? At present, there is no problem with package management for Linux systems, so it seems to be okay. (I don't know how long it will be okay)
Recommended Posts