From b71b6517972eb7950f5c0e021ac7a2c98ad8bccc Mon Sep 17 00:00:00 2001 From: Chase Engelbrecht Date: Mon, 5 Feb 2024 13:10:27 -0800 Subject: [PATCH] Fix CVE-2023-6378 Signed-off-by: Chase Engelbrecht --- build.gradle | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/build.gradle b/build.gradle index f36f3995d..0145f33df 100644 --- a/build.gradle +++ b/build.gradle @@ -48,7 +48,12 @@ apply plugin: 'jacoco' apply from: 'build-tools/merged-coverage.gradle' configurations { - ktlint + ktlint { + resolutionStrategy { + force "ch.qos.logback:logback-classic:1.3.14" + force "ch.qos.logback:logback-core:1.3.14" + } + } } dependencies { @@ -113,4 +118,4 @@ task updateVersion { } ant.replaceregexp(file:'build.gradle', match: '"opensearch.version", "\\d.*"', replace: '"opensearch.version", "' + newVersion.tokenize('-')[0] + '-SNAPSHOT"', flags:'g', byline:true) } -} \ No newline at end of file +}