Reputation: 41
I am trying to update my application JDK-8 to OpenJDK 8.0 and also want to run OpenJDK 8.0 on wildfly 13.0.0.FINAL server, but Wildfly is not starting.
What is the minimum OpenJDK version required for running wildfly 13.0.0 FINAL?
Upvotes: 0
Views: 1239
Reputation: 16439
Wildfly 13 supports from any JDK (includes Oracle JDK, OpenJDK, AdoptedOpenJDK,..) version from 8 to 10.
Note : OpenJDK supports only the source code. It doesn't provide installers and builds.
Better use AdoptedOpenJDK or Amazon Corretto.
Amazon Corretto 8 Download : https://docs.aws.amazon.com/corretto/latest/corretto-8-ug/downloads-list.html (Free and open to use)
AdoptedOpenJDK Download : https://adoptopenjdk.net/ (Free and open to use)
Note : I personally like Amazon Corretto as while installing, it sets the java in the classpath automatically. You don't need to manually set it.
Useful Resources :
Upvotes: 1