fix: remove EOL Java 18 from compatible Java majors

Signed-off-by: Sefa Eyeoglu <contact@scrumplex.net>
This commit is contained in:
Sefa Eyeoglu 2022-11-29 15:25:20 +01:00
parent 9547400f18
commit 3aa946cfc2
No known key found for this signature in database
GPG Key ID: C10411294912A422

View File

@ -10,8 +10,8 @@ SUPPORTED_LAUNCHER_VERSION = 21
SUPPORTED_COMPLIANCE_LEVEL = 1
DEFAULT_JAVA_MAJOR = 8 # By default, we should recommend Java 8 if we don't know better
COMPATIBLE_JAVA_MAPPINGS = {
16: [17, 18, 19],
17: [18, 19]
16: [17, 19],
17: [19]
}
'''