From d3c25e6b123756450334158266bffc4414eb0928 Mon Sep 17 00:00:00 2001 From: Azalea <22280294+hykilpikonna@users.noreply.github.com> Date: Sun, 29 Dec 2024 06:57:42 -0500 Subject: [PATCH] [U] Upgrade deps --- build.gradle.kts | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/build.gradle.kts b/build.gradle.kts index 89da707f..4532c3f6 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -4,7 +4,7 @@ import java.time.ZoneId import java.time.format.DateTimeFormatter plugins { - val ktVer = "2.0.21" + val ktVer = "2.1.0" java kotlin("plugin.lombok") version ktVer @@ -14,7 +14,7 @@ plugins { kotlin("plugin.serialization") version ktVer kotlin("plugin.allopen") version ktVer id("io.freefair.lombok") version "8.6" - id("org.springframework.boot") version "3.2.3" + id("org.springframework.boot") version "3.4.1" id("com.github.ben-manes.versions") version "0.51.0" id("org.hibernate.orm") version "6.4.4.Final" application @@ -64,11 +64,11 @@ dependencies { // ============================= // Network - implementation("io.ktor:ktor-client-core:2.3.8") - implementation("io.ktor:ktor-client-cio:2.3.8") - implementation("io.ktor:ktor-client-content-negotiation:2.3.8") - implementation("io.ktor:ktor-client-encoding:2.3.8") - implementation("io.ktor:ktor-serialization-kotlinx-json:2.3.8") + implementation("io.ktor:ktor-client-core:2.3.13") + implementation("io.ktor:ktor-client-cio:2.3.13") + implementation("io.ktor:ktor-client-content-negotiation:2.3.13") + implementation("io.ktor:ktor-client-encoding:2.3.13") + implementation("io.ktor:ktor-serialization-kotlinx-json:2.3.13") implementation("org.jetbrains.kotlin:kotlin-reflect") // Somehow these are needed for ktor even though they're not in the documentation