File: build.gradle

package info (click to toggle)
opencensus-java 0.24.0%2Bds-1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 6,044 kB
  • sloc: java: 57,166; xml: 1,020; sh: 117; python: 39; makefile: 5
file content (24 lines) | stat: -rw-r--r-- 643 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
plugins {
    id 'java'
}

description = 'OpenCensus Http Servlet Plugin'

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

dependencies {
    compile project(':opencensus-api')
    compile project(':opencensus-contrib-http-util')

    // Will be provided from elsewhere at runtime
    compileOnly('javax.ws.rs:javax.ws.rs-api:2.1.1')
    compileOnly('javax.annotation:javax.annotation-api:1.3.2')

    testCompile('javax.ws.rs:javax.ws.rs-api:2.1.1')
    testCompile('javax.annotation:javax.annotation-api:1.3.2')

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