Skip to content

Commit

Permalink
update kotlin dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
joshmossas committed Nov 28, 2024
1 parent 06d97ee commit c6cb4f5
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 10 deletions.
6 changes: 3 additions & 3 deletions languages/kotlin/kotlin-codegen-reference/build.gradle.kts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
plugins {
kotlin("jvm") version "1.9.0"
kotlin("plugin.serialization") version "1.9.0"
kotlin("jvm") version "2.0.20"
kotlin("plugin.serialization") version "2.0.20"
application
}

Expand All @@ -22,7 +22,7 @@ dependencies {
implementation("io.ktor:ktor-client-core:$ktorVersion")
implementation("io.ktor:ktor-client-cio:$ktorVersion")
implementation("io.ktor:ktor-client-websockets:$ktorVersion")
implementation("org.jetbrains.kotlinx:kotlinx-serialization-json:1.6.3")
implementation("org.jetbrains.kotlinx:kotlinx-serialization-json:1.7.3")
}

tasks.test {
Expand Down
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
kotlin.code.style=official
ktorVersion=2.3.4
ktorVersion=3.0.1
2 changes: 1 addition & 1 deletion tests/clients/kotlin/.idea/kotlinc.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 4 additions & 4 deletions tests/clients/kotlin/build.gradle.kts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
plugins {
kotlin("jvm") version "1.9.22"
kotlin("plugin.serialization") version "1.9.22"
kotlin("jvm") version "2.0.20"
kotlin("plugin.serialization") version "2.0.20"
application
}

Expand All @@ -19,10 +19,10 @@ repositories {

dependencies {
testImplementation("org.jetbrains.kotlin:kotlin-test")
testImplementation("org.jetbrains.kotlinx:kotlinx-coroutines-test:1.8.0-RC2")
testImplementation("org.jetbrains.kotlinx:kotlinx-coroutines-test:1.9.0")
implementation("io.ktor:ktor-client-core:$ktorVersion")
implementation("io.ktor:ktor-client-cio:$ktorVersion")
implementation("org.jetbrains.kotlinx:kotlinx-serialization-json:1.6.3")
implementation("org.jetbrains.kotlinx:kotlinx-serialization-json:1.7.3")
}

tasks.test {
Expand Down
2 changes: 1 addition & 1 deletion tests/clients/kotlin/gradle.properties
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
kotlin.code.style=official
ktorVersion=2.3.4
ktorVersion=3.0.1

0 comments on commit c6cb4f5

Please sign in to comment.