|
@@ -1,6 +1,6 @@
|
|
|
plugins {
|
|
|
application
|
|
|
- kotlin("jvm") version "1.9.22"
|
|
|
+ kotlin("jvm") version "2.0.21"
|
|
|
kotlin("plugin.serialization") version "2.0.0"
|
|
|
id("com.github.johnrengelman.shadow") version "8.1.0"
|
|
|
}
|
|
@@ -9,8 +9,8 @@ repositories {
|
|
|
mavenCentral()
|
|
|
}
|
|
|
|
|
|
-val ktorVersion = "2.3.12"
|
|
|
-val kotlinxSerializationVersion = "1.6.3"
|
|
|
+val ktorVersion = "3.0.1"
|
|
|
+val kotlinxSerializationVersion = "1.7.3"
|
|
|
val exposedVersion = "0.56.0"
|
|
|
|
|
|
dependencies {
|
|
@@ -25,8 +25,8 @@ dependencies {
|
|
|
implementation("org.jetbrains.exposed:exposed-dao:$exposedVersion")
|
|
|
implementation("org.jetbrains.exposed:exposed-jdbc:$exposedVersion")
|
|
|
|
|
|
- implementation("org.postgresql:postgresql:42.5.4")
|
|
|
- implementation("com.zaxxer:HikariCP:5.0.1")
|
|
|
+ implementation("org.postgresql:postgresql:42.7.4")
|
|
|
+ implementation("com.zaxxer:HikariCP:5.1.0")
|
|
|
runtimeOnly("org.slf4j:slf4j-simple:1.7.36")
|
|
|
}
|
|
|
|