Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

dependecy corrections #8

Merged
merged 1 commit into from
Jul 9, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Loading