build(quartz): target JVM 17 instead of JVM 21

Lower the quartz module's Kotlin jvmTarget for both the JVM and Android
compilations from JVM_21 to JVM_17, broadening the range of runtimes that
can consume the published library.

Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
Claude-Session: https://claude.ai/code/session_01V1Hn61gQJ1joUznESzUHU4
This commit is contained in:
Claude
2026-07-22 15:42:02 +00:00
parent c9e8cd4e0c
commit 5f954c0e04
+2 -2
View File
@@ -17,7 +17,7 @@ kotlin {
}
jvm {
compilerOptions {
jvmTarget.set(JvmTarget.JVM_21)
jvmTarget.set(JvmTarget.JVM_17)
}
}
@@ -33,7 +33,7 @@ kotlin {
.toInt()
compilerOptions {
jvmTarget.set(JvmTarget.JVM_21)
jvmTarget.set(JvmTarget.JVM_17)
}
optimization {