Moves quartz to Java 21 due to binary inconsistencies between the multiple builds of KMP (tests conflicting with main)

This commit is contained in:
Vitor Pamplona
2025-10-10 10:49:35 -04:00
parent a0c1b01a4b
commit 0a23e23801
+2 -2
View File
@@ -51,7 +51,7 @@ kotlin {
} }
jvm { jvm {
compilerOptions { compilerOptions {
jvmTarget.set(JvmTarget.JVM_1_8) jvmTarget.set(JvmTarget.JVM_21)
} }
} }
@@ -61,7 +61,7 @@ kotlin {
androidTarget { androidTarget {
publishLibraryVariants("release") publishLibraryVariants("release")
compilerOptions { compilerOptions {
jvmTarget.set(JvmTarget.JVM_1_8) jvmTarget.set(JvmTarget.JVM_21)
} }
} }