summaryrefslogtreecommitdiff
path: root/buildSrc/build.gradle.kts
diff options
context:
space:
mode:
authorFabian Mastenbroek <mail.fabianm@gmail.com>2021-09-30 10:28:46 +0200
committerFabian Mastenbroek <mail.fabianm@gmail.com>2021-10-03 17:17:36 +0200
commit83e6c19681a5cae4b80773f95a66b6753b0bcd7e (patch)
tree655e1675901633fd0ce550ec9a318162c4f56a61 /buildSrc/build.gradle.kts
parent54bccf522e169d5cba6489291217f3307ae71094 (diff)
build: Migrate from kotlinx-benchmark to jmh-gradle
This change updates the project to use jmh-gradle for benchmarking as opposed to kotlinx-benchmark. Both plugins use JMH under the hood, but jmh-gradle offers more options for profiling and seems to be beter maintained.
Diffstat (limited to 'buildSrc/build.gradle.kts')
-rw-r--r--buildSrc/build.gradle.kts2
1 files changed, 1 insertions, 1 deletions
diff --git a/buildSrc/build.gradle.kts b/buildSrc/build.gradle.kts
index a5e99bfa..4eb8ac31 100644
--- a/buildSrc/build.gradle.kts
+++ b/buildSrc/build.gradle.kts
@@ -34,7 +34,7 @@ dependencies {
implementation(kotlin("gradle-plugin", version = "1.5.30"))
implementation("org.jlleitschuh.gradle:ktlint-gradle:10.1.0")
implementation("org.jetbrains.kotlin:kotlin-allopen:1.5.30")
- implementation("org.jetbrains.kotlinx:kotlinx-benchmark-plugin:0.3.1")
+ implementation("me.champeau.jmh:jmh-gradle-plugin:0.6.6")
implementation("org.jetbrains.dokka:dokka-gradle-plugin:1.5.0")
implementation("gradle.plugin.com.github.jengelman.gradle.plugins:shadow:7.0.0")
}