File: build.gradle

package info (click to toggle)
perfmark-java 0.21.0%2Bds-2
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 860 kB
  • sloc: java: 4,963; xml: 13; makefile: 5
file content (32 lines) | stat: -rw-r--r-- 753 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
23
24
25
26
27
28
29
30
31
32
description = "PerfMark Agent"

sourceCompatibility = 1.7
targetCompatibility = 1.7

dependencies {
    compile libraries.jsr305,
            "net.bytebuddy:byte-buddy:1.9.13",
            "org.ow2.asm:asm:7.1",
            "org.ow2.asm:asm-commons:7.1",
            project(":perfmark-api"),
            project(":perfmark-impl"),
            libraries.errorprone
    testCompile project(":perfmark-java6"),
            libraries.truth
}

compileTestJava {
    sourceCompatibility = 1.9
    targetCompatibility = 1.9
}

jar {
    manifest {
        attributes(
                "Premain-Class": "io.perfmark.agent.Main",
                "Main-Class": "io.perfmark.agent.Main\$MySelf",
        )
    }
}

// print sourceSets.main.runtimeClasspath.asPath