commit 4adadc3477601be5548004a48f260d14b3ace069
parent d1676f1c372d0af8b16aec1434ab46a1ecec68f9
Author: Antoine A <>
Date: Thu, 13 Feb 2025 09:58:06 +0100
common: update dependencies and fix test
Diffstat:
2 files changed, 6 insertions(+), 5 deletions(-)
diff --git a/build.gradle b/build.gradle
@@ -20,12 +20,12 @@ if (!JavaVersion.current().isCompatibleWith(JavaVersion.VERSION_17)){
allprojects {
ext {
set("kotlin_version", "2.1.10")
- set("ktor_version", "3.0.3")
- set("clikt_version", "5.0.2")
+ set("ktor_version", "3.1.0")
+ set("clikt_version", "5.0.3")
set("coroutines_version", "1.10.1")
set("postgres_version", "42.7.5")
set("junixsocket_version", "2.10.1")
- set("shadow_version", "8.3.5")
+ set("shadow_version", "8.3.6")
}
repositories {
diff --git a/common/src/test/kotlin/ConfigTest.kt b/common/src/test/kotlin/ConfigTest.kt
@@ -1,6 +1,6 @@
/*
* This file is part of LibEuFin.
- * Copyright (C) 2023-2024 Taler Systems S.A.
+ * Copyright (C) 2023-2025 Taler Systems S.A.
*
* LibEuFin is free software; you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License as
@@ -78,8 +78,9 @@ class ConfigTest {
testErr("Could not read config at '$secondPath': permission denied")
}
+ secondPath.toFile().setReadable(true)
configPath.writeText("\n@inline-matching@*.conf")
- testErr("Recursion limit in config inlining at '$configPath:1'")
+ testErr("Recursion limit in config inlining at '$secondPath:1'")
configPath.writeText("\n\n@inline@test-conf.conf")
testErr("Recursion limit in config inlining at '$configPath:2'")
}