-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
38 lines (30 loc) · 918 Bytes
/
build.gradle
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
36
37
38
plugins {
id 'java'
}
group 'com.marklogic'
version '1.0-SNAPSHOT'
sourceCompatibility = 1.8
repositories {
mavenCentral()
jcenter()
}
dependencies {
compile group: 'org.apache.kafka', name: 'kafka-clients', version: '2.1.0'
compile group: 'com.fasterxml.jackson.core', name: 'jackson-databind', version: '2.9.8'
compile group: 'commons-cli', name: 'commons-cli', version: '1.4'
compile group: "org.slf4j", name: "slf4j-jdk14", version: "1.7.25"
compile ("com.marklogic:ml-javaclient-util:3.10.0") {
exclude module: "jdom2"
exclude module: "marklogic-xcc"
exclude module: "spring-context"
}
testCompile group: 'junit', name: 'junit', version: '4.12'
}
jar {
manifest {
attributes "Main-Class": "com.marklogic.KafkaMarklogicSource"
}
from {
configurations.compile.collect { it.isDirectory() ? it : zipTree(it) }
}
}