diff --git a/server/build.gradle.kts b/server/build.gradle.kts index ecd2906..9c5f43e 100644 --- a/server/build.gradle.kts +++ b/server/build.gradle.kts @@ -22,7 +22,7 @@ dependencies { implementation(coroutines.bundles.implementation) // Core - implementation(platform("io.ktor:ktor-bom:3.0.2")) + implementation(platform("io.ktor:ktor-bom:3.0.3")) implementation("io.ktor:ktor-server-core-jvm") implementation("io.ktor:ktor-server-netty-jvm") implementation("io.ktor:ktor-server-host-common-jvm") diff --git a/settings.gradle.kts b/settings.gradle.kts index 471faa8..fed7699 100644 --- a/settings.gradle.kts +++ b/settings.gradle.kts @@ -21,7 +21,7 @@ dependencyResolutionManagement { // Kotlin coroutines create("coroutines") { - version("coroutines", "1.9.0") + version("coroutines", "1.10.1") library("platform", "org.jetbrains.kotlinx", "kotlinx-coroutines-bom").versionRef("coroutines") library("core", "org.jetbrains.kotlinx", "kotlinx-coroutines-core").withoutVersion() library("jdk8", "org.jetbrains.kotlinx", "kotlinx-coroutines-jdk8").withoutVersion() @@ -60,7 +60,7 @@ dependencyResolutionManagement { // Logback create("logback") { - version("logback", "1.5.12") + version("logback", "1.5.15") library("logback", "ch.qos.logback", "logback-classic").versionRef("logback") bundle("implementation", listOf("logback")) }