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)
2023.6.28
Created 28 June 2023.
Performing load tests during project build
Using the plugins DSL:
plugins {
id("io.geekload") version "2023.6.28"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("io.geekload:GradleGeekLoad:2023.6.28")
}
}
apply(plugin = "io.geekload")
Using the plugins DSL:
plugins {
id "io.geekload" version "2023.6.28"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "io.geekload:GradleGeekLoad:2023.6.28"
}
}
apply plugin: "io.geekload"