[Build] Remove JDK 15 and 16 from JdkMajorVersion

They are replaced with JDK 17 LTS release
This commit is contained in:
Dmitriy Novozhilov
2021-09-24 15:20:21 +03:00
committed by TeamCityServer
parent de7fb9606a
commit 825ecc3a6f
-2
View File
@@ -21,8 +21,6 @@ enum class JdkMajorVersion(
JDK_9(9, overrideMajorVersion = 11),
JDK_10(10, mandatory = false, overrideMajorVersion = 11),
JDK_11(11, mandatory = false),
JDK_15(15, mandatory = false),
JDK_16(16, mandatory = false),
JDK_17(17, mandatory = false);
fun isMandatory(): Boolean = mandatory