diff --git a/gradle/libs.versions.toml b/gradle/libs.versions.toml deleted file mode 100644 index fd8c825c1..000000000 --- a/gradle/libs.versions.toml +++ /dev/null @@ -1,2 +0,0 @@ -[versions] -kmmresult = "1.8.0!!" \ No newline at end of file diff --git a/openid-data-classes/build.gradle.kts b/openid-data-classes/build.gradle.kts index 15319c45d..a20c779b5 100644 --- a/openid-data-classes/build.gradle.kts +++ b/openid-data-classes/build.gradle.kts @@ -40,21 +40,6 @@ kotlin { api("at.asitplus:jsonpath4k:${VcLibVersions.jsonpath}") } } - - commonTest { - dependencies { - } - } - - jvmMain { - dependencies { - } - } - - jvmTest { - dependencies { - } - } } } diff --git a/vck-openid-ktor/build.gradle.kts b/vck-openid-ktor/build.gradle.kts index 76b5e39ac..255862ad9 100644 --- a/vck-openid-ktor/build.gradle.kts +++ b/vck-openid-ktor/build.gradle.kts @@ -68,7 +68,6 @@ kotlin { iosTest { dependencies { - implementation("io.arrow-kt:arrow-core:1.2.4") //work around klib bug implementation(ktor("client-darwin")) } } diff --git a/vck-openid/build.gradle.kts b/vck-openid/build.gradle.kts index 0e04d00bd..a1a678072 100644 --- a/vck-openid/build.gradle.kts +++ b/vck-openid/build.gradle.kts @@ -38,6 +38,8 @@ kotlin { api(project(":vck")) api(project(":openid-data-classes")) commonImplementationDependencies() + // Add arrow-core dependency because of https://youtrack.jetbrains.com/issue/KT-73858/NullPointerException-when-building-CMP-ios-App + api("io.arrow-kt:arrow-core:1.2.4") } } @@ -60,12 +62,6 @@ kotlin { implementation("org.json:json:${VcLibVersions.Jvm.json}") } } - - iosTest { - dependencies { - implementation("io.arrow-kt:arrow-core:1.2.4") //work around klib bug - } - } } }