From c6c23910f03252772c5436de23266533c8dc92f2 Mon Sep 17 00:00:00 2001 From: Phil Barber Date: Tue, 22 Jul 2025 13:27:34 -0400 Subject: [PATCH] MLE-23004 - Found another Gradle deprecation. --- marklogic-client-api/build.gradle | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/marklogic-client-api/build.gradle b/marklogic-client-api/build.gradle index e38351724..8aa1a5acf 100644 --- a/marklogic-client-api/build.gradle +++ b/marklogic-client-api/build.gradle @@ -62,6 +62,11 @@ dependencies { testImplementation 'org.apache.commons:commons-lang3:3.17.0' testImplementation 'com.opencsv:opencsv:5.10' testImplementation 'org.skyscreamer:jsonassert:1.5.3' + + // Automatic loading of test framework implementation dependencies is deprecated. + // https://docs.gradle.org/current/userguide/upgrading_version_8.html#test_framework_implementation_dependencies + testRuntimeOnly("org.junit.platform:junit-platform-launcher:1.13.4") + } // Ensure that mlHost and mlPassword can override the defaults of localhost/admin if they've been modified