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 91a2ca6 commit cc24634Copy full SHA for cc24634
build.gradle.kts
@@ -1,3 +1,5 @@
1
+import org.jetbrains.kotlin.gradle.dsl.JvmTarget
2
+
3
plugins {
4
kotlin("jvm") version "2.0.0"
5
@@ -10,7 +12,7 @@ plugins {
10
12
val jvm = JavaVersion.VERSION_11
11
13
14
group = "xyz.calcugames"
-version = "0.2.1-SNAPSHOT"
15
+version = "0.2.2-SNAPSHOT"
16
17
java {
18
sourceCompatibility = jvm
@@ -40,8 +42,8 @@ tasks {
40
42
}
41
43
44
compileKotlin {
- kotlinOptions {
- jvmTarget = jvm.toString()
45
+ compilerOptions {
46
+ jvmTarget.set(JvmTarget.JVM_11)
47
48
49
0 commit comments