forked from jaegertracing/jaeger-client-java
-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
17 lines (13 loc) · 931 Bytes
/
build.gradle
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
description = 'Instrumentation library for jaeger-dropwizard'
dependencies {
compile project(':jaeger-jaxrs2')
compile group: 'io.opentracing', name: 'opentracing-noop', version: opentracingVersion
compile group: 'io.dropwizard.metrics', name: 'metrics-core', version: '3.2.5'
compile group: 'io.dropwizard', name: 'dropwizard-hibernate', version: '0.9.3'
testCompile project(path: ':jaeger-core', configuration: 'tests')
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
signature 'org.codehaus.mojo.signature:java16:1.1@signature'
}