Skip to content

Commit

Permalink
Fix/dependency cleanups (#179)
Browse files Browse the repository at this point in the history
* fix dependencies
* add arrow as API dependency (works around KT-73858)
  • Loading branch information
JesusMcCloud authored Dec 18, 2024
1 parent 3634a4a commit 9bc3177
Show file tree
Hide file tree
Showing 4 changed files with 2 additions and 24 deletions.
2 changes: 0 additions & 2 deletions gradle/libs.versions.toml

This file was deleted.

15 changes: 0 additions & 15 deletions openid-data-classes/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -40,21 +40,6 @@ kotlin {
api("at.asitplus:jsonpath4k:${VcLibVersions.jsonpath}")
}
}

commonTest {
dependencies {
}
}

jvmMain {
dependencies {
}
}

jvmTest {
dependencies {
}
}
}
}

Expand Down
1 change: 0 additions & 1 deletion vck-openid-ktor/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,6 @@ kotlin {

iosTest {
dependencies {
implementation("io.arrow-kt:arrow-core:1.2.4") //work around klib bug
implementation(ktor("client-darwin"))
}
}
Expand Down
8 changes: 2 additions & 6 deletions vck-openid/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -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")
}
}

Expand All @@ -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
}
}
}
}

Expand Down

0 comments on commit 9bc3177

Please sign in to comment.