Home

Awesome

Gradle-JMH-Report

gradle-jmh-report is a Gradle plugin to manage and visualize the result of your JMH benchmarks.

Note: This plugin is not for executing benchmarks, its for reporting on already executed benchmarks. There are multiple ways how you can setup your JMH benchmark execution in Gradle, i've written in this blog post about it!

News

Features

Wanted:

Getting Started

plugins {
  id "io.morethan.jmhreport" version "0.9.0"
}
jmhReport {
    jmhResultPath = project.file('build/reports/jmh/result.json')
    jmhReportOutput = project.file('build/reports/jmh')
}

This is how it looks

screenshot

Project Build