libeufin

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

commit 62dfdddb1d92e5f2854876c5e39c39a235f1e115
parent ce67cdbc8cb51b199875bb75bbde05f3b77d94bd
Author: Antoine A <>
Date:   Fri, 31 May 2024 10:48:21 +0900

Update kotlin and dependencies

Diffstat:
Mbuild.gradle | 12++++++------
Mcommon/build.gradle | 6+++---
Mnexus/build.gradle | 2+-
3 files changed, 10 insertions(+), 10 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 "1.9.23" + id("org.jetbrains.kotlin.jvm") version "2.0.0" id("org.jetbrains.dokka") version "1.9.20" id("idea") id("java-library") @@ -19,12 +19,12 @@ if (!JavaVersion.current().isCompatibleWith(JavaVersion.VERSION_17)){ allprojects { ext { - set("kotlin_version", "1.9.23") - set("ktor_version", "2.3.9") - set("clikt_version", "4.2.2") - set("coroutines_version", "1.8.0") + set("kotlin_version", "2.0.0") + set("ktor_version", "2.3.11") + set("clikt_version", "4.4.0") + set("coroutines_version", "1.8.1") set("postgres_version", "42.7.3") - set("junixsocket_version", "2.9.0") + set("junixsocket_version", "2.9.1") } repositories { diff --git a/common/build.gradle b/common/build.gradle @@ -16,10 +16,10 @@ compileTestKotlin.kotlinOptions.jvmTarget = "17" sourceSets.main.java.srcDirs = ["src/main/kotlin"] dependencies { - implementation("ch.qos.logback:logback-classic:1.5.3") + implementation("ch.qos.logback:logback-classic:1.5.6") // Crypto - implementation("org.bouncycastle:bcprov-jdk18on:1.77") - implementation("org.bouncycastle:bcpkix-jdk18on:1.77") + implementation("org.bouncycastle:bcprov-jdk18on:1.78.1") + implementation("org.bouncycastle:bcpkix-jdk18on:1.78.1") // Database helper implementation("org.postgresql:postgresql:$postgres_version") implementation("com.zaxxer:HikariCP:5.1.0") diff --git a/nexus/build.gradle b/nexus/build.gradle @@ -31,7 +31,7 @@ dependencies { implementation("io.ktor:ktor-client-cio:$ktor_version") // PDF generation - implementation("com.itextpdf:itext-core:8.0.3") + implementation("com.itextpdf:itext-core:8.0.4") // UNIX domain sockets support (used to connect to PostgreSQL) implementation("com.kohlschutter.junixsocket:junixsocket-core:$junixsocket_version")