Skip to content

Commit

Permalink
Upgrade to Kotlin 2.0.20 (#337)
Browse files Browse the repository at this point in the history
  • Loading branch information
ulrikandersen authored Nov 27, 2024
1 parent 028e93a commit f4faf06
Show file tree
Hide file tree
Showing 6 changed files with 8 additions and 8 deletions.
4 changes: 2 additions & 2 deletions build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import com.github.jengelman.gradle.plugins.shadow.tasks.ShadowJar
import org.jetbrains.dokka.gradle.DokkaTask

plugins {
id("org.jetbrains.kotlin.jvm") version "1.8.20" // Apply the Kotlin JVM plugin to add support for Kotlin.
id("org.jetbrains.kotlin.jvm") version "2.0.20"
id("com.github.johnrengelman.shadow") version "8.1.1"
id("org.jetbrains.dokka") version "1.8.10"
id("com.palantir.git-version") version "3.0.0"
Expand Down Expand Up @@ -41,7 +41,7 @@ allprojects {
val jacksonVersion by extra { "2.15.1" }
val junitVersion by extra { "5.9.2" }
val ktorVersion by extra { "2.3.9" }
val kotlinxSerializationVersion by extra { "1.6.3" }
val kotlinxSerializationVersion by extra { "1.7.3" }
val kotlinxDateTimeVersion by extra { "0.6.1" }

dependencies {
Expand Down
2 changes: 1 addition & 1 deletion end2end-tests/ktor/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ sourceSets {
}

plugins {
id("org.jetbrains.kotlin.jvm") version "1.8.20" // Apply the Kotlin JVM plugin to add support for Kotlin.
kotlin("jvm")
}

java {
Expand Down
2 changes: 1 addition & 1 deletion end2end-tests/models-jackson/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ sourceSets {
}

plugins {
id("org.jetbrains.kotlin.jvm") version "1.8.20" // Apply the Kotlin JVM plugin to add support for Kotlin.
kotlin("jvm")
}

java {
Expand Down
4 changes: 2 additions & 2 deletions end2end-tests/models-kotlinx/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,8 @@ sourceSets {
}

plugins {
id("org.jetbrains.kotlin.jvm") version "1.8.20" // Apply the Kotlin JVM plugin to add support for Kotlin.
kotlin("plugin.serialization") version "1.8.20"
kotlin("jvm")
kotlin("plugin.serialization") version "2.0.20"
}

java {
Expand Down
2 changes: 1 addition & 1 deletion end2end-tests/okhttp/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ sourceSets {
}

plugins {
id("org.jetbrains.kotlin.jvm") version "1.8.20" // Apply the Kotlin JVM plugin to add support for Kotlin.
kotlin("jvm")
}

java {
Expand Down
2 changes: 1 addition & 1 deletion end2end-tests/openfeign/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ sourceSets {
}

plugins {
id("org.jetbrains.kotlin.jvm") version "1.8.20" // Apply the Kotlin JVM plugin to add support for Kotlin.
kotlin("jvm")
}

java {
Expand Down

0 comments on commit f4faf06

Please sign in to comment.