org.jetbrains.kotlinx.benchmark
Owner: Kotlin Team
Toolkit for running benchmarks for multiplatform Kotlin code.
https://github.com/Kotlin/kotlinx-benchmark
Sources: https://github.com/Kotlin/kotlinx-benchmark.git
Version 0.4.13 (latest)
Created 21 November 2024.
Toolkit for running benchmarks for multiplatform Kotlin code.
Add this plugin to your build using the plugins DSL:
plugins {
id("org.jetbrains.kotlinx.benchmark") version "0.4.13"
}
See also:
-
Adding the plugin to build logic for usage in precompiled script plugins.
See the relevant documentation for more information.
Add this plugin as a dependency to
<convention-plugins-build>/build.gradle(.kts)
:dependencies { implementation("org.jetbrains.kotlinx.benchmark:org.jetbrains.kotlinx.benchmark.gradle.plugin:0.4.13") }
It can then be applied in the precompiled script plugin:plugins { id("org.jetbrains.kotlinx.benchmark") }
-
The legacy method of plugin application.
See the relevant documentation for more information.buildscript { repositories { gradlePluginPortal() } dependencies { classpath("org.jetbrains.kotlinx.benchmark:org.jetbrains.kotlinx.benchmark.gradle.plugin:0.4.13") } } apply(plugin = "org.jetbrains.kotlinx.benchmark")
- Applying plugins to all subprojects .