forked from jaegertracing/jaeger-client-java
-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
33 lines (28 loc) · 930 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
description = 'Integration library for Zipkin'
dependencies {
compile group: 'io.zipkin.reporter', name: 'zipkin-reporter', version: '0.6.9'
compile group: 'io.zipkin.reporter', name: 'zipkin-sender-urlconnection', version: '0.6.9'
compile project(':jaeger-core')
testCompile group: 'junit', name: 'junit', version: junitVersion
testCompile group: 'org.mockito', name: 'mockito-core', version: mockitoVersion
testCompile group: 'io.zipkin.java', name: 'zipkin-junit', version: '1.16.2'
testCompile group: 'io.zipkin.brave', name: 'brave-http', version: '3.15.3'
}
sourceSets {
main {
java {
srcDir 'src/main/java'
}
}
test {
java {
srcDir 'src/test/java'
}
}
}
jar {
from sourceSets.main.output
manifest {
attributes('Implementation-Title': 'jaeger-zipkin', 'Implementation-Version': project.version)
}
}