aboutsummaryrefslogtreecommitdiff
path: root/exporters/trace/stackdriver/build.gradle
blob: 038f577f7051eb4729ca39e875e4e7f1941cd5f9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
description = 'OpenCensus Trace Stackdriver Exporter'

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

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

    testCompile project(':opencensus-api')

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