forked from jaegertracing/jaeger-client-java
-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
35 lines (29 loc) · 1.11 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
35
description = 'Instrumentation library for jaeger-dropwizard'
dependencies {
compile project(':jaeger-jaxrs2')
compile group: 'io.opentracing', name: 'opentracing-impl', version: opentracingVersion
compile group: 'io.dropwizard.metrics', name: 'metrics-core', version: '3.1.0'
compile group: 'io.dropwizard', name: 'dropwizard-hibernate', version: '0.9.1'
testCompile group: 'org.glassfish.jersey.containers', name: 'jersey-container-grizzly2-http', version: jerseyVersion
testCompile group: 'org.glassfish.jersey.test-framework.providers', name: 'jersey-test-framework-provider-grizzly2', version: jerseyVersion
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-dropwizard', 'Implementation-Version': project.version)
}
}