libeufin

Integration and sandbox testing for FinTech APIs and data formats
Log | Files | Refs | Submodules | README | LICENSE

commit 76572686b1e5947afa1a36329ceddc90b15c9875
parent c2de9ecdceabcd2a8632170b3c74727ea02f6b23
Author: Antoine A <>
Date:   Thu, 30 Oct 2025 11:14:24 +0100

common: update dependencies

Diffstat:
Mbuild.gradle | 12++++++------
Mcommon/build.gradle | 4++--
Mnexus/build.gradle | 2+-
3 files changed, 9 insertions(+), 9 deletions(-)

diff --git a/build.gradle b/build.gradle @@ -1,7 +1,7 @@ // This file is in the public domain. plugins { - id("org.jetbrains.kotlin.jvm") version "2.2.20" + id("org.jetbrains.kotlin.jvm") version "2.2.21" id("org.jetbrains.dokka") version "2.0.0" id("idea") id("java-library") @@ -18,14 +18,14 @@ if (!JavaVersion.current().isCompatibleWith(JavaVersion.VERSION_17)){ allprojects { ext { - set("kotlin_version", "2.2.20") - set("ktor_version", "3.3.0") + set("kotlin_version", "2.2.21") + set("ktor_version", "3.3.1") set("clikt_version", "5.0.3") set("coroutines_version", "1.10.2") - set("postgres_version", "42.7.7") + set("postgres_version", "42.7.8") set("junixsocket_version", "2.10.1") - set("shadow_version", "9.1.0") - set("prometheus_version", "1.4.1") + set("shadow_version", "9.2.2") + set("prometheus_version", "1.4.2") } repositories { diff --git a/common/build.gradle b/common/build.gradle @@ -51,8 +51,8 @@ compileKotlin { dependencies { implementation("org.slf4j:slf4j-api:2.0.17") // Crypto - implementation("org.bouncycastle:bcprov-jdk18on:1.81") - implementation("org.bouncycastle:bcpkix-jdk18on:1.81") + implementation("org.bouncycastle:bcprov-jdk18on:1.82") + implementation("org.bouncycastle:bcpkix-jdk18on:1.82") // Database helper implementation("org.postgresql:postgresql:$postgres_version") implementation("com.zaxxer:HikariCP:7.0.2") diff --git a/nexus/build.gradle b/nexus/build.gradle @@ -38,7 +38,7 @@ dependencies { implementation("io.ktor:ktor-client-websockets:$ktor_version") // PDF generation - implementation("com.itextpdf:itext-core:9.2.0") + implementation("com.itextpdf:itext-core:9.3.0") // UNIX domain sockets support (used to connect to PostgreSQL) implementation("com.kohlschutter.junixsocket:junixsocket-core:$junixsocket_version")