-
Notifications
You must be signed in to change notification settings - Fork 74
Expand file tree
/
Copy pathbuild.gradle
More file actions
35 lines (27 loc) · 772 Bytes
/
build.gradle
File metadata and controls
35 lines (27 loc) · 772 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
buildscript {
repositories {
mavenLocal()
mavenCentral()
}
dependencies {
classpath "com.marklogic:ml-development-tools:7.2.0"
}
}
plugins {
id 'java'
}
apply plugin: "com.marklogic.ml-development-tools"
group 'org.example'
version '1.0-SNAPSHOT'
repositories {
mavenCentral()
}
dependencies {
implementation 'com.marklogic:marklogic-client-api:7.2.0'
}
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"
}
tasks.register("testProjectPath", com.marklogic.client.tools.gradle.EndpointProxiesGenTask) {
serviceDeclarationFile = "src/main/ml-modules/root/inventory/service.json"
}