libeufin

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

commit a28da30e00841a0895674802c324fabe347c36fc
parent 942f58a3f04df2649ebea5a60fb791fb05e3b8f8
Author: Antoine A <>
Date:   Tue, 22 Jul 2025 10:19:22 +0200

common: temp dirty version fix

Diffstat:
Mcommon/src/main/kotlin/Config.kt | 6+-----
1 file changed, 1 insertion(+), 5 deletions(-)

diff --git a/common/src/main/kotlin/Config.kt b/common/src/main/kotlin/Config.kt @@ -27,11 +27,7 @@ package tech.libeufin.common * Note: putting Sandbox and Nexus as Utils dependencies would result * into circular dependency. */ -val VERSION: String by lazy { - ClassLoader.getSystemClassLoader().getResourceAsStream("version.txt") - ?.bufferedReader() - ?.use { it.readText() }!! -} +val VERSION: String = "v1.0.8" sealed interface ServerConfig { data class Unix(val path: String, val mode: Int): ServerConfig