Skip to content

Commit

Permalink
Merge pull request #8 from Sphereon-Opensource/feature/dependency-fixes
Browse files Browse the repository at this point in the history
dependecy corrections
  • Loading branch information
sanderPostma authored Jul 9, 2024
2 parents 8d322d7 + 4c80b52 commit 3c587cc
Showing 1 changed file with 7 additions and 5 deletions.
12 changes: 7 additions & 5 deletions modules/openid-federation-common/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,8 @@ plugins {
kotlin("plugin.serialization") version "2.0.0"
}

val ktorVersion = "2.3.11"

kotlin {
@OptIn(ExperimentalWasmDsl::class)

Expand Down Expand Up @@ -47,7 +49,7 @@ kotlin {
sourceSets {
val commonMain by getting {
dependencies {
implementation("io.ktor:ktor-client-core:2.3.11")
implementation("io.ktor:ktor-client-core:$ktorVersion")
implementation("org.jetbrains.kotlinx:kotlinx-serialization-json:1.7.0")
implementation("org.jetbrains.kotlinx:kotlinx-serialization-core:1.7.0")
}
Expand All @@ -60,7 +62,7 @@ kotlin {
}
val jvmMain by getting {
dependencies {
implementation("io.ktor:ktor-client-cio:2.3.11")
implementation("io.ktor:ktor-client-core-jvm:$ktorVersion")
}
}
val jvmTest by getting {
Expand All @@ -71,7 +73,7 @@ kotlin {

val androidMain by getting {
dependencies {
implementation("io.ktor:ktor-client-okhttp:2.3.11")
implementation("io.ktor:ktor-client-core-jvm:$ktorVersion")
}
}
val androidUnitTest by getting {
Expand All @@ -83,7 +85,7 @@ kotlin {
val iosMain by creating {
dependsOn(commonMain)
dependencies {
implementation("io.ktor:ktor-client-ios:2.3.11")
implementation("io.ktor:ktor-client-ios:$ktorVersion")
}
}
val iosX64Main by getting {
Expand All @@ -105,7 +107,7 @@ kotlin {

val jsMain by getting {
dependencies {
implementation("io.ktor:ktor-client-js:2.3.11")
implementation("io.ktor:ktor-client-js:$ktorVersion")
}
}

Expand Down

0 comments on commit 3c587cc

Please sign in to comment.