diff --git a/build.gradle.kts b/build.gradle.kts index ad41dd8a..1ee51e11 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -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 { diff --git a/gradle/libs.versions.toml b/gradle/libs.versions.toml index 16885bbb..2f308011 100644 --- a/gradle/libs.versions.toml +++ b/gradle/libs.versions.toml @@ -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" } diff --git a/lib/build.gradle.kts b/lib/build.gradle.kts index c8f22f7c..6cd1a107 100644 --- a/lib/build.gradle.kts +++ b/lib/build.gradle.kts @@ -30,6 +30,7 @@ dependencies { implementation(libs.hikari) testImplementation(libs.junit.jupiter) + testImplementation(platform(libs.junit.jupiter.bom)) testRuntimeOnly(libs.junit.launcher) }