Update dependencies

This commit is contained in:
AsamK 2025-10-25 11:50:29 +02:00
parent cad61dae37
commit 5510d1e20d
3 changed files with 8 additions and 5 deletions

View File

@ -3,7 +3,7 @@ plugins {
application
eclipse
`check-lib-versions`
id("org.graalvm.buildtools.native") version "0.11.0"
id("org.graalvm.buildtools.native") version "0.11.2"
}
allprojects {

View File

@ -1,17 +1,19 @@
[versions]
slf4j = "2.0.17"
junit = "6.0.0"
[libraries]
bouncycastle = "org.bouncycastle:bcprov-jdk18on:1.81"
bouncycastle = "org.bouncycastle:bcprov-jdk18on:1.82"
jackson-databind = "com.fasterxml.jackson.core:jackson-databind:2.20.0"
argparse4j = "net.sourceforge.argparse4j:argparse4j:0.9.0"
dbusjava = "com.github.hypfvieh:dbus-java-transport-native-unixsocket:5.0.0"
slf4j-api = { module = "org.slf4j:slf4j-api", version.ref = "slf4j" }
slf4j-jul = { module = "org.slf4j:jul-to-slf4j", version.ref = "slf4j" }
logback = "ch.qos.logback:logback-classic:1.5.18"
logback = "ch.qos.logback:logback-classic:1.5.20"
signalservice = "com.github.turasa:signal-service-java:2.15.3_unofficial_132"
sqlite = "org.xerial:sqlite-jdbc:3.50.3.0"
hikari = "com.zaxxer:HikariCP:7.0.2"
junit-jupiter = "org.junit.jupiter:junit-jupiter:5.13.4"
junit-launcher = "org.junit.platform:junit-platform-launcher:1.13.4"
junit-jupiter-bom = { module = "org.junit:junit-bom", version.ref = "junit" }
junit-jupiter = { module = "org.junit.jupiter:junit-jupiter", version.ref = "junit" }
junit-launcher = { module = "org.junit.platform:junit-platform-launcher", version.ref = "junit" }

View File

@ -30,6 +30,7 @@ dependencies {
implementation(libs.hikari)
testImplementation(libs.junit.jupiter)
testImplementation(platform(libs.junit.jupiter.bom))
testRuntimeOnly(libs.junit.launcher)
}