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" }