From a4e0af7d7bc3a8558e2af70c18b971270cf26d1b Mon Sep 17 00:00:00 2001 From: Rob Rudin Date: Wed, 23 Jul 2025 14:11:15 -0400 Subject: [PATCH] MLE-12345 Updated data services example project Black Duck was complaining about a license issue in version 6.3.0 of ml-development-tools --- .../src/test/example-project/build.gradle | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/ml-development-tools/src/test/example-project/build.gradle b/ml-development-tools/src/test/example-project/build.gradle index 76ce297b1..490cfada1 100644 --- a/ml-development-tools/src/test/example-project/build.gradle +++ b/ml-development-tools/src/test/example-project/build.gradle @@ -4,7 +4,7 @@ buildscript { mavenCentral() } dependencies { - classpath "com.marklogic:ml-development-tools:6.3.0" + classpath "com.marklogic:ml-development-tools:7.1.0" } } @@ -23,13 +23,13 @@ repositories { } dependencies { - implementation 'com.marklogic:marklogic-client-api:6.3.0' + implementation 'com.marklogic:marklogic-client-api:7.1.0' } -task testFullPath(type: com.marklogic.client.tools.gradle.EndpointProxiesGenTask) { +tasks.register("testFullPath", com.marklogic.client.tools.gradle.EndpointProxiesGenTask) { serviceDeclarationFile = "/Users/rrudin/workspace/java-client-api/example-project/src/main/ml-modules/root/inventory/service.json" } -task testProjectPath(type: com.marklogic.client.tools.gradle.EndpointProxiesGenTask) { +tasks.register("testProjectPath", com.marklogic.client.tools.gradle.EndpointProxiesGenTask) { serviceDeclarationFile = "src/main/ml-modules/root/inventory/service.json" }