File: build.gradle

package info (click to toggle)
perfmark-java 0.21.0%2Bds-3
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, forky, sid, trixie
  • size: 860 kB
  • sloc: java: 4,963; xml: 13; makefile: 5
file content (22 lines) | stat: -rw-r--r-- 402 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
description = "PerfMark API"

sourceCompatibility = 1.6
targetCompatibility = 1.6

dependencies {
    compile libraries.jsr305,
            libraries.errorprone
    testCompile project(':perfmark-impl'),
            project(':perfmark-java6'),
            libraries.truth
}


compileTestJava {
    sourceCompatibility = 1.7
    targetCompatibility = 1.7
}

javadoc {
    exclude 'io/perfmark/Impl**'
}