diff --git a/gradle/libs.versions.toml b/gradle/libs.versions.toml index f410ba2..df86bd8 100644 --- a/gradle/libs.versions.toml +++ b/gradle/libs.versions.toml @@ -11,8 +11,8 @@ hikari = "5.0.1" jackson = "2.12.5" jackson-protobuf = "0.9.13" jwt = "3.19.4" -kotlin = "1.9.0" -kotlin-coroutines = "1.7.3" +kotlin = "1.9.22" +kotlin-coroutines = "1.8.0" # IMPORTANT: Kotlin Logging cannot be upgraded to version 3.x+ because Spring relies on an older set of logging libraries # and the newer Kotlin Logging libraries mandate newer logging. Spring will start exploding when the app launches in # kube due to the slf4j remover. diff --git a/settings.gradle.kts b/settings.gradle.kts index 26ca39c..402ee3c 100644 --- a/settings.gradle.kts +++ b/settings.gradle.kts @@ -13,8 +13,8 @@ pluginManagement { google() } plugins { - kotlin("jvm") version "1.9.0" - kotlin("plugin.spring") version "1.9.0" apply false + kotlin("jvm") version "1.9.22" + kotlin("plugin.spring") version "1.9.22" apply false id("org.springframework.boot") version "3.1.1" apply false id("io.spring.dependency-management") version "1.1.3" apply false id("idea")