Fix JVM target and language version info in CLI and Gradle

This commit is contained in:
Alexander Udalov
2021-08-31 20:54:39 +02:00
parent 1932546a90
commit 473ed2e410
4 changed files with 6 additions and 6 deletions
@@ -83,7 +83,7 @@ class K2JVMCompilerArguments : CommonCompilerArguments() {
@Argument(
value = "-jvm-target",
valueDescription = "<version>",
description = "Target version of the generated JVM bytecode (1.6 (DEPRECATED), 1.8, 9, 10, 11, 12, 13, 14, 15 or 16), default is 1.8"
description = "Target version of the generated JVM bytecode (1.6 (DEPRECATED), 1.8, 9, 10, 11, 12, 13, 14, 15, 16 or 17), default is 1.8"
)
var jvmTarget: String? by NullableStringFreezableVar(JvmTarget.DEFAULT.description)