aboutsummaryrefslogtreecommitdiff
path: root/impl/build.gradle
blob: e8852049a169fadb1f417c25e686fbefe61c7f3b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
description = 'OpenCensus Implementation'

apply plugin: 'java'

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

dependencies {
    compile project(':opencensus-api'),
            project(':opencensus-impl-core'),
            libraries.disruptor

    testCompile project(':opencensus-api'),
            project(':opencensus-impl-core')

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

javadoc.exclude 'io/opencensus/internal/**'