Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -3,14 +3,14 @@ buildscript {
mavenCentral()
}
dependencies {
classpath("org.jetbrains.kotlin:kotlin-gradle-plugin:2.2.0")
classpath("org.jetbrains.kotlin:kotlin-gradle-plugin:2.2.20")
classpath(libs.ktlint)
}
}

plugins {
application
kotlin("jvm") version "2.2.0"
kotlin("jvm") version "2.2.20"
id("jacoco")
alias(libs.plugins.ktlint)
}
Expand Down Expand Up @@ -49,7 +49,7 @@ dependencies {
implementation(libs.tyrusClient)
implementation(libs.bundles.slf4j)

testImplementation("com.h2database:h2:2.3.232")
testImplementation("com.h2database:h2:2.4.240")
testImplementation(kotlin("test-junit"))
}

Expand Down
16 changes: 8 additions & 8 deletions gradle/libs.versions.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,23 +7,23 @@ slf4j = "2.0.17"
# https://mvnrepository.com/artifact/com.sksamuel.hoplite/hoplite-core
hoplite = "2.9.0"
# https://mvnrepository.com/artifact/org.http4k/http4k-core
http4k = "5.21.1.0"
http4k = "6.18.1.0"
# https://mvnrepository.com/artifact/com.fasterxml.jackson.core/jackson-core
jackson = "2.19.1"
jackson = "2.20.0"
# https://mvnrepository.com/artifact/com.squareup.okhttp3/okhttp
okhttp = "5.0.0"
okhttp = "5.1.0"
# https://mvnrepository.com/artifact/org.postgresql/postgresql
postgresql = "42.7.7"
postgresql = "42.7.8"
# https://mvnrepository.com/artifact/org.flywaydb/flyway-core
flyway = "11.10.1"
flyway = "11.13.0"
# https://mvnrepository.com/artifact/com.sksamuel.scrimage/scrimage-core
scrimage = "4.3.2"
scrimage = "4.3.5"
# https://mvnrepository.com/artifact/com.slack.api/bolt
bolt = "1.45.3"
bolt = "1.45.4"
# https://mvnrepository.com/artifact/javax.websocket/javax.websocket-api
websocket = "1.1"
# https://mvnrepository.com/artifact/org.glassfish.tyrus.bundles/tyrus-standalone-client
tyrus = "1.21" # bolt does not support newer than v1.x
tyrus = "1.22" # bolt does not support newer than v1.x
# https://mvnrepository.com/artifact/com.target/lite-for-jdbc
liteForJdbc = "3.0.2"

Expand Down