From 4209947bf5d79e5cd8bdc373261ad3d48a7117f9 Mon Sep 17 00:00:00 2001 From: Rob Rudin Date: Wed, 23 Jul 2025 13:08:20 -0400 Subject: [PATCH] MLE-12345 I will not rest until Black Duck is happy Avoids warnings on Spring 5.x. --- ml-development-tools/build.gradle | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/ml-development-tools/build.gradle b/ml-development-tools/build.gradle index 8906775c9..320f1db87 100644 --- a/ml-development-tools/build.gradle +++ b/ml-development-tools/build.gradle @@ -25,9 +25,10 @@ dependencies { testImplementation 'com.squareup.okhttp3:okhttp:4.12.0' - // Needed for MarkLogicVersion class + // We need the MarkLogicVersion class, but that has no dependencies and so we exclude all dependencies from + // this, in particular to avoid vulnerabilities on Spring 5.x libraries. testImplementation ("com.marklogic:marklogic-junit5:1.5.0") { - exclude module: "marklogic-client-api" + transitive = false } }