aboutsummaryrefslogtreecommitdiff
path: root/benchmarks/build.gradle
diff options
context:
space:
mode:
Diffstat (limited to 'benchmarks/build.gradle')
-rw-r--r--benchmarks/build.gradle9
1 files changed, 9 insertions, 0 deletions
diff --git a/benchmarks/build.gradle b/benchmarks/build.gradle
index 8b58bbf5..3c20fd0c 100644
--- a/benchmarks/build.gradle
+++ b/benchmarks/build.gradle
@@ -32,5 +32,14 @@ compileJmhJava {
options.compilerArgs = compileJava.options.compilerArgs
}
+
+// Generate html report for findbugsJmh.
+findbugsJmh {
+ reports {
+ xml.enabled = false
+ html.enabled = true
+ }
+}
+
// Disable checkstyle if not java8.
checkstyleJmh.enabled = JavaVersion.current().isJava8Compatible() \ No newline at end of file