update dependencies

This commit is contained in:
2025-03-21 21:17:14 +01:00
parent fe76b59c34
commit 4d92b911b7
2 changed files with 7 additions and 5 deletions

View File

@@ -5,9 +5,9 @@ val logback_version: String by project
val exposed_version: String by project
val h2_version: String by project
plugins {
kotlin("jvm") version "1.9.0"
id("io.ktor.plugin") version "2.3.3"
kotlin("plugin.serialization") version "1.9.0"
kotlin("jvm") version "2.1.20"
id("io.ktor.plugin") version "3.1.1"
kotlin("plugin.serialization") version "2.1.20"
id("com.palantir.docker") version "0.35.0"
}
@@ -45,7 +45,7 @@ dependencies {
implementation("io.github.cdimascio:dotenv-kotlin:6.4.1")
implementation("at.favre.lib:bcrypt:0.10.2")
testImplementation("io.ktor:ktor-server-tests-jvm")
testImplementation("io.ktor:ktor-server-test-host")
testImplementation("org.jetbrains.kotlin:kotlin-test-junit:$kotlin_version")
}