forked from jaegertracing/jaeger-client-java
-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
34 lines (29 loc) · 1.04 KB
/
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
description = 'Instrumentation library for apache http client'
dependencies {
compile project(':jaeger-core')
compile project(':jaeger-context')
compile group: 'org.apache.httpcomponents', name: 'httpcore', version: apacheHttpComponentsVersion
compile group: 'org.apache.httpcomponents', name: 'httpclient', version: apacheHttpComponentsVersion
compile group: 'org.apache.httpcomponents', name: 'httpasyncclient', version: apacheHttpComponentsVersion
testCompile group: 'org.mock-server', name: 'mockserver-netty', version: '3.10.4'
testCompile group: 'junit', name: 'junit', version: junitVersion
testCompile group: 'org.mockito', name: 'mockito-core', version: mockitoVersion
}
sourceSets {
main {
java {
srcDir 'src/main/java'
}
}
test {
java {
srcDir 'src/test/java'
}
}
}
jar {
from sourceSets.main.output
manifest {
attributes('Implementation-Title': 'jaeger-apachehttpclient', 'Implementation-Version': project.version)
}
}