Skip to content

Commit

Permalink
update deps...
Browse files Browse the repository at this point in the history
  • Loading branch information
astinz committed Feb 4, 2024
1 parent 529da74 commit 4e55922
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 12 deletions.
8 changes: 4 additions & 4 deletions gradle/libs.versions.toml
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
[versions]
ktor = "2.3.4"
ktor = "2.3.7"
junit = "5.8.1"

[libraries]
common-bcs = { module = "xyz.mcxross.bcs:bcs", version = "1.0.0-SNAPSHOT" }
bcs = { module = "xyz.mcxross.bcs:bcs", version = "1.0.1-SNAPSHOT" }
junit-jupiter-api = { module = "org.junit.jupiter:junit-jupiter-api", version.ref = "junit" }
junit-jupiter-engine = { module = "org.junit.jupiter:junit-jupiter-engine", version.ref = "junit" }
ktor-client-core = { module = "io.ktor:ktor-client-core", version.ref = "ktor" }
Expand All @@ -17,5 +17,5 @@ ktor-client-darwin = { module = "io.ktor:ktor-client-darwin", version.ref = "kto
ktor-client-logging = { module = "io.ktor:ktor-client-logging", version.ref = "ktor" }
ktor-client-mock = { module = "io.ktor:ktor-client-mock", version.ref = "ktor" }
ktor-serialization-kotlinx-json = { module = "io.ktor:ktor-serialization-kotlinx-json", version.ref = "ktor" }
kotlinx-coroutines-core = { module = "org.jetbrains.kotlinx:kotlinx-coroutines-core", version = "1.7.2" }

kotlinx-coroutines-core = { module = "org.jetbrains.kotlinx:kotlinx-coroutines-core", version = "1.7.3" }
kotlin-test = { module = "org.jetbrains.kotlin:kotlin-test", version = "1.9.22" }
19 changes: 11 additions & 8 deletions lib/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ group = "xyz.mcxross.ksui"
version = "1.3.2"

repositories {
// maven { url = uri("https://s01.oss.sonatype.org/content/repositories/snapshots") }
maven { url = uri("https://s01.oss.sonatype.org/content/repositories/snapshots") }
mavenCentral()
mavenLocal()
google()
Expand All @@ -43,10 +43,18 @@ kotlin {
jvm { testRuns["test"].executionTask.configure { useJUnitPlatform() } }

linuxX64()
linuxArm64()
macosArm64()
macosX64()
tvosX64()
tvosArm64()
watchosX64()
watchosArm32()
watchosArm64()
mingwX64()

applyDefaultHierarchyTemplate()

sourceSets {
commonMain.dependencies {
implementation(libs.ktor.client.core)
Expand All @@ -55,12 +63,12 @@ kotlin {
implementation(libs.ktor.client.logging)
implementation(libs.ktor.serialization.kotlinx.json)
implementation(libs.kotlinx.coroutines.core)
implementation(libs.common.bcs)
implementation(libs.bcs)
}

commonTest.dependencies {
implementation(libs.ktor.client.mock)
implementation("org.jetbrains.kotlin:kotlin-test")
implementation(libs.kotlin.test)
}

jsMain.dependencies { implementation(libs.ktor.client.js) }
Expand All @@ -71,11 +79,6 @@ kotlin {

iosMain.dependencies { implementation(libs.ktor.client.darwin) }

mingwMain.dependencies { implementation(libs.ktor.client.curl) }

linuxMain.dependencies { implementation(libs.ktor.client.curl) }

macosMain.dependencies { implementation(libs.ktor.client.curl) }
}
}

Expand Down

0 comments on commit 4e55922

Please sign in to comment.