From d18a4b7adc55547fcf83060b9dbdcf484752590c Mon Sep 17 00:00:00 2001 From: Maksim Kurnikov Date: Mon, 2 Dec 2024 11:16:07 +0100 Subject: [PATCH] add apache.commons.text dependency to provide StringEscapeUtils --- build.gradle.kts | 2 ++ 1 file changed, 2 insertions(+) diff --git a/build.gradle.kts b/build.gradle.kts index 21989e18..63b42b3c 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -65,6 +65,8 @@ allprojects { // cannot be updated further, problems with underlying library implementation("com.github.ajalt.clikt:clikt:3.5.4") implementation("com.fasterxml.jackson.module:jackson-module-kotlin:2.18.+") + // required for the StringEscapeUtils + implementation("org.apache.commons:commons-text:1.12.0") testImplementation("junit:junit:4.13.2") testImplementation("org.opentest4j:opentest4j:1.3.0")