You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
536 B
19 lines
536 B
description = 'OpenCensus Benchmarks'
|
|
|
|
dependencies {
|
|
compile project(':opencensus-api'),
|
|
project(':opencensus-impl-core'),
|
|
project(':opencensus-impl-lite'),
|
|
project(':opencensus-impl')
|
|
}
|
|
|
|
jmhReport {
|
|
jmhResultPath = project.file("${project.buildDir}/reports/jmh/results.json")
|
|
jmhReportOutput = project.file("${project.buildDir}/reports/jmh")
|
|
}
|
|
|
|
tasks.jmh.finalizedBy tasks.jmhReport
|
|
|
|
// Disable checkstyle if not java8.
|
|
checkstyleJmh.enabled = JavaVersion.current().isJava8Compatible()
|