Set quartz JVM target to 1.8 to allow for lower requirements for building library

This commit is contained in:
davotoula
2025-09-06 15:34:06 +02:00
parent ab9ee36263
commit 8aaea960f0
+4 -4
View File
@@ -47,7 +47,7 @@ kotlin {
} }
jvm { jvm {
compilerOptions { compilerOptions {
jvmTarget.set(JvmTarget.JVM_21) jvmTarget.set(JvmTarget.JVM_1_8)
} }
} }
@@ -57,7 +57,7 @@ kotlin {
androidTarget { androidTarget {
publishLibraryVariants("release") publishLibraryVariants("release")
compilerOptions { compilerOptions {
jvmTarget.set(JvmTarget.JVM_21) jvmTarget.set(JvmTarget.JVM_1_8)
} }
} }
@@ -152,8 +152,8 @@ kotlin {
api(libs.secp256k1.kmp.jni.android) api(libs.secp256k1.kmp.jni.android)
// LibSodium for ChaCha encryption (NIP-44) // LibSodium for ChaCha encryption (NIP-44)
implementation ("com.goterl:lazysodium-android:5.2.0@aar") implementation (libs.lazysodium.android)
implementation ("net.java.dev.jna:jna:5.17.0@aar") implementation (libs.jna)
// Performant Parser of JSONs into Events // Performant Parser of JSONs into Events
api(libs.jackson.module.kotlin) api(libs.jackson.module.kotlin)