Consistent JvmTarget JVM_21 across all modules

This commit is contained in:
davotoula
2025-08-28 22:14:16 +01:00
parent 8c26af7d40
commit ef250eb0f1

View File

@@ -4,7 +4,11 @@ plugins {
} }
kotlin { kotlin {
jvm() jvm {
compilerOptions {
jvmTarget = org.jetbrains.kotlin.gradle.dsl.JvmTarget.JVM_21
}
}
// Target declarations - add or remove as needed below. These define // Target declarations - add or remove as needed below. These define
// which platforms this KMP module supports. // which platforms this KMP module supports.
@@ -35,6 +39,7 @@ kotlin {
} }
compilerOptions { compilerOptions {
jvmTarget = org.jetbrains.kotlin.gradle.dsl.JvmTarget.JVM_21
freeCompilerArgs.add("-Xstring-concat=inline") freeCompilerArgs.add("-Xstring-concat=inline")
} }
} }