aboutsummaryrefslogtreecommitdiff
path: root/exporters/trace/stackdriver/build.gradle
blob: b495b4247d4fc38ce99f7464056248cf83c1cf7f (plain)
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
description = 'OpenCensus Trace Stackdriver Exporter'

[compileJava, compileTestJava].each() {
    it.sourceCompatibility = 1.7
    it.targetCompatibility = 1.7
}

dependencies {
    compile project(':opencensus-api'),
            libraries.google_auth

    compile (libraries.google_cloud_trace) {
        // Prefer library version.
        exclude group: 'com.google.guava', module: 'guava'

        // Prefer library version.
        exclude group: 'com.google.code.findbugs', module: 'jsr305'

        // We will always be more up to date.
        exclude group: 'io.opencensus', module: 'opencensus-api'
    }

    testCompile project(':opencensus-api')

    signature "org.codehaus.mojo.signature:java17:+@signature"
}