io.geekload
Owner: geekload
Performing load tests during project build
https://geekload.io/documentation/gradle
Sources: https://github.com/iDispatchPro/GeekLoadGradlePlugin
Version 2023.6.28 (latest)
Created 28 June 2023.
Performing load tests during project build
Add this plugin to your build using the plugins DSL:
plugins {
id("io.geekload") version "2023.6.28"
}
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("io.geekload:io.geekload.gradle.plugin:2023.6.28") }
It can then be applied in the precompiled script plugin:plugins { id("io.geekload") }
-
The legacy method of plugin application.
See the relevant documentation for more information.buildscript { repositories { gradlePluginPortal() } dependencies { classpath("io.geekload:io.geekload.gradle.plugin:2023.6.28") } } apply(plugin = "io.geekload")
- Applying plugins to all subprojects .