Update library dependencies to latest versions

Add standard license (MIT NonCommercial)
This commit is contained in:
2025-09-30 15:33:55 +02:00
parent 3556ffa295
commit 9448127654
13 changed files with 74 additions and 8 deletions

View File

@@ -3,7 +3,7 @@
import org.jetbrains.kotlin.gradle.targets.js.dsl.ExperimentalDistributionDsl
plugins {
kotlin("multiplatform") version "2.1.20"
kotlin("multiplatform") version "2.2.20"
}
group = "nl.astraeus"
@@ -42,11 +42,11 @@ kotlin {
val commonTest by getting
val jvmMain by getting {
dependencies {
implementation("io.undertow:undertow-core:2.3.14.Final")
implementation("org.jetbrains.kotlinx:kotlinx-html-jvm:0.11.0")
implementation("io.undertow:undertow-core:2.3.19.Final")
implementation("org.jetbrains.kotlinx:kotlinx-html-jvm:0.12.0")
implementation("org.xerial:sqlite-jdbc:3.50.3.0")
implementation("com.zaxxer:HikariCP:7.0.1")
implementation("com.zaxxer:HikariCP:7.0.2")
implementation("nl.astraeus:simple-jdbc-stats:1.6.1") {
exclude(group = "org.slf4j", module = "slf4j-api")
}