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 (20 lines) | stat: -rw-r--r-- 393 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
description = "PerfMark Java9 API"

sourceCompatibility = 1.9
targetCompatibility = 1.9

dependencies {
    compile project(':perfmark-impl'),
            libraries.jsr305
    testCompile project(':perfmark-api'),
            project(':perfmark-impl'),
            project(':perfmark-java7')
}

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

jar {
    exclude 'io/perfmark/java9/Internal*'
}