net.foragerr.jmeter
Owner: RaGe
A gradle plugin for running jmeter tests
Sources: https://github.com/jmeter-gradle-plugin/jmeter-gradle-plugin.git
Version 0.6.0-2.13-SNAPSHOT
Created 23 July 2015.
A gradle plugin for running jmeter tests
Add this plugin to your build using the plugins DSL:
plugins {
id("net.foragerr.jmeter") version "0.6.0-2.13-SNAPSHOT"
}
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("net.foragerr.jmeter:net.foragerr.jmeter.gradle.plugin:0.6.0-2.13-SNAPSHOT") }
It can then be applied in the precompiled script plugin:plugins { id("net.foragerr.jmeter") }
-
The legacy method of plugin application.
See the relevant documentation for more information.buildscript { repositories { gradlePluginPortal() } dependencies { classpath("net.foragerr.jmeter:net.foragerr.jmeter.gradle.plugin:0.6.0-2.13-SNAPSHOT") } } apply(plugin = "net.foragerr.jmeter")
- Applying plugins to all subprojects .