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 f18490e commit 54e6d04Copy full SHA for 54e6d04
build.gradle.kts
@@ -1,4 +1,5 @@
1
import org.jetbrains.compose.desktop.application.dsl.TargetFormat
2
+import org.jetbrains.kotlin.gradle.dsl.JvmTarget
3
import org.jetbrains.kotlin.gradle.dsl.KotlinVersion
4
5
plugins {
@@ -64,11 +65,15 @@ compose.desktop {
64
65
66
java {
67
withSourcesJar()
68
+ sourceCompatibility = JavaVersion.VERSION_11
69
+ targetCompatibility = JavaVersion.VERSION_11
70
}
71
72
kotlin {
73
+ jvmToolchain(11)
74
compilerOptions {
75
languageVersion = KotlinVersion.KOTLIN_1_8
76
+ jvmTarget = JvmTarget.JVM_11
77
78
79
0 commit comments