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
|