AdoptOpenJDK: Open-source, prebuilt OpenJDK binaries
11–20 of 91 posts
Re: AdoptOpenJDK: Open-source, prebuilt OpenJDK binaries
#12Re: AdoptOpenJDK: Open-source, prebuilt OpenJDK binaries
#13Anyone ever tried the Eclipse OpenJ9 VM? I've never heard of it, but it might be fun to see if there's a difference with my various apps and performance in an IDE. I've just been hearing a lot of fuss about GraalVM, though haven't had time to investigate what's so special about it nor how it might help typical 'enterprise' services and Java apps.
Re: AdoptOpenJDK: Open-source, prebuilt OpenJDK binaries
#14On macOS and Windows their various builds are also available over the Homebrew and Scoop package managers: https://github.com/AdoptOpenJDK/homebrew-openjdk https://github.com/lukesampson/scoop/wiki/Java
Re: AdoptOpenJDK: Open-source, prebuilt OpenJDK binaries
#15Please add an option with JavaFX bundled.
(select JRE FX or JDK FX from the dropdown I guess - they've changed the download page recently)
Re: AdoptOpenJDK: Open-source, prebuilt OpenJDK binaries
#16RedHat also provides OpenJDK builds for free, although hidden behind a developer account registration. https://developers.redhat.com/products/openjdk/download
Re: AdoptOpenJDK: Open-source, prebuilt OpenJDK binaries
#17Re: AdoptOpenJDK: Open-source, prebuilt OpenJDK binaries
#18Does the OpenJDK project not offer open source, pre-built binaries already?
I think they do, but Oracle recently announced they won't be backporting security patches to older versions of the open source OpenJDK distributions. As I understand it AdoptOpenJDK is a third party effort to continue supporting the free verisions of older versions of java after Oracle abandons them.
Re: AdoptOpenJDK: Open-source, prebuilt OpenJDK binaries
#19There is a great answer here... https://stackoverflow.com/questions/52524112/how-do-i-instal...
brew install java (12)
brew install java11
And you can simplify things...In your .bashrc:
export JDK_HOME=`/usr/libexec/java_home -v 12` # v9+ change to the version you installed
export JAVA_PATH=$JDK_HOME
export JAVA_HOME=$JDK_HOME
export PATH="."
export PATH="${PATH}:${JAVA_HOME}/bin"Re: AdoptOpenJDK: Open-source, prebuilt OpenJDK binaries
#20Anyone ever tried the Eclipse OpenJ9 VM? I've never heard of it, but it might be fun to see if there's a difference with my various apps and performance in an IDE. I've just been hearing a lot of fuss about GraalVM, though haven't had time to investigate what's so special about it nor how it might help typical 'enterprise' services and Java apps.