File: build.gradle

package info (click to toggle)
opencensus-java 0.26.0%2Bds-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 6,088 kB
  • sloc: java: 57,348; xml: 1,026; sh: 117; python: 39; makefile: 8
file content (19 lines) | stat: -rw-r--r-- 430 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
description = 'OpenCensus API'

[compileJava, compileTestJava].each() {
    it.sourceCompatibility = "$System.env.JAVA_SOURCE_VERSION"
    it.targetCompatibility = "$System.env.JAVA_TARGET_VERSION"
}

dependencies {
    compile libraries.grpc_context

    compileOnly libraries.auto_value
    compileOnly libraries.auto_value_a

}

javadoc {
    exclude 'io/opencensus/internal/**'
    exclude 'io/opencensus/trace/internal/**'
}