xref: /aosp_15_r20/external/opencensus-java/exporters/trace/jaeger/build.gradle (revision a24ffb47c3166327784aa05b149974e82e8f71b8)
1description = 'OpenCensus Trace Jaeger Exporter'
2
3[compileJava, compileTestJava].each() {
4    it.sourceCompatibility = 1.6
5    it.targetCompatibility = 1.6
6}
7
8dependencies {
9    compileOnly libraries.auto_value
10
11    compile project(':opencensus-api'),
12            project(':opencensus-exporter-trace-util'),
13            libraries.guava
14
15    compile(libraries.jaeger_reporter) {
16        // Prefer library version.
17        exclude group: 'com.google.guava', module: 'guava'
18    }
19
20    testCompile 'org.testcontainers:testcontainers:1.7.0',
21            'com.google.http-client:google-http-client-gson:1.23.0'
22
23    // Unless linked to impl, spans will be blank and not exported during integration tests.
24    testRuntime project(':opencensus-impl')
25
26    signature "org.codehaus.mojo.signature:java17:1.0@signature"
27    signature "net.sf.androidscents.signature:android-api-level-14:4.0_r4@signature"
28}
29