We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b8c3fd0 commit 0499e67Copy full SHA for 0499e67
1 file changed
src/main/java/net/minecraftforge/java_provisioner/api/Distro.java
@@ -11,14 +11,16 @@
11
public enum Distro implements Comparable<Distro> {
12
// Preferred Distros
13
MICROSOFT, // Used by Minecraft
14
- ORACLE_OPEN_JDK, // OpenJDK, straight from jdk.java.net
15
TEMURIN, // Trusted build of OpenJDK by Eclipse Adoptium
16
ZULU, // next best from Zulu, has macOS ARM support for Java 8
17
18
// Highlights from the others
19
JETBRAINS, // DCEVM, has optimizations for swing, but is otherwise standard
20
CORRETTO, // Amazon, has optimizations for containers/cloud
21
+ // Vanilla OpenJDK -- Windows uses older builds, outdated builds from AdoptOpenJDK, unfortunately.
22
+ ORACLE_OPEN_JDK,
23
+
24
// Everything else
25
DEBIAN,
26
BISHENG,
0 commit comments