libeufin

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

commit dcac26dacf579751b96a145840815980b1d34a3d
parent c562b7612b4a305540487f0828d8edec4c8e10b7
Author: Antoine A <>
Date:   Thu,  8 Aug 2024 13:23:37 +0200

Update dependencies, kotlin and gradle

Diffstat:
Mbank/build.gradle | 2+-
Mbuild.gradle | 7++++---
Mgradle/wrapper/gradle-wrapper.jar | 0
Mgradle/wrapper/gradle-wrapper.properties | 2+-
Mgradlew | 5++++-
Mgradlew.bat | 2++
Mnexus/build.gradle | 4++--
7 files changed, 14 insertions(+), 8 deletions(-)

diff --git a/bank/build.gradle b/bank/build.gradle @@ -1,7 +1,7 @@ plugins { id("kotlin") id("application") - id("com.github.johnrengelman.shadow") version "8.1.1" + id("com.gradleup.shadow") version "$shadow_version" id("org.jetbrains.kotlin.plugin.serialization") version "$kotlin_version" } 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.0.0" + id("org.jetbrains.kotlin.jvm") version "2.0.10" id("org.jetbrains.dokka") version "1.9.20" id("idea") id("java-library") @@ -19,12 +19,13 @@ if (!JavaVersion.current().isCompatibleWith(JavaVersion.VERSION_17)){ allprojects { ext { - set("kotlin_version", "2.0.0") + set("kotlin_version", "2.0.10") set("ktor_version", "2.3.12") set("clikt_version", "4.4.0") set("coroutines_version", "1.8.1") set("postgres_version", "42.7.3") - set("junixsocket_version", "2.9.1") + set("junixsocket_version", "2.10.0") + set("shadow_version", "8.3.0") } repositories { diff --git a/gradle/wrapper/gradle-wrapper.jar b/gradle/wrapper/gradle-wrapper.jar Binary files differ. diff --git a/gradle/wrapper/gradle-wrapper.properties b/gradle/wrapper/gradle-wrapper.properties @@ -1,6 +1,6 @@ distributionBase=GRADLE_USER_HOME distributionPath=wrapper/dists -distributionUrl=https\://services.gradle.org/distributions/gradle-8.8-bin.zip +distributionUrl=https\://services.gradle.org/distributions/gradle-8.9-bin.zip networkTimeout=10000 validateDistributionUrl=true zipStoreBase=GRADLE_USER_HOME diff --git a/gradlew b/gradlew @@ -15,6 +15,8 @@ # See the License for the specific language governing permissions and # limitations under the License. # +# SPDX-License-Identifier: Apache-2.0 +# ############################################################################## # @@ -84,7 +86,8 @@ done # shellcheck disable=SC2034 APP_BASE_NAME=${0##*/} # Discard cd standard output in case $CDPATH is set (https://github.com/gradle/gradle/issues/25036) -APP_HOME=$( cd "${APP_HOME:-./}" > /dev/null && pwd -P ) || exit +APP_HOME=$( cd -P "${APP_HOME:-./}" > /dev/null && printf '%s +' "$PWD" ) || exit # Use the maximum available, or set MAX_FD != -1 to use that value. MAX_FD=maximum diff --git a/gradlew.bat b/gradlew.bat @@ -13,6 +13,8 @@ @rem See the License for the specific language governing permissions and @rem limitations under the License. @rem +@rem SPDX-License-Identifier: Apache-2.0 +@rem @if "%DEBUG%"=="" @echo off @rem ########################################################################## diff --git a/nexus/build.gradle b/nexus/build.gradle @@ -1,7 +1,7 @@ plugins { id("kotlin") id("application") - id("com.github.johnrengelman.shadow") version "8.1.1" + id("com.gradleup.shadow") version "$shadow_version" id("org.jetbrains.kotlin.plugin.serialization") version "$kotlin_version" } @@ -32,7 +32,7 @@ dependencies { implementation("io.ktor:ktor-client-websockets:$ktor_version") // PDF generation - implementation("com.itextpdf:itext-core:8.0.4") + implementation("com.itextpdf:itext-core:8.0.5") // UNIX domain sockets support (used to connect to PostgreSQL) implementation("com.kohlschutter.junixsocket:junixsocket-core:$junixsocket_version")