com.netas.jmeter
Owner:
Ahmet BÜTÜN
A Gradle plugin for running JMeter Tests
Sources: https://github.com/abutun/jmeter-gradle-plugin.git
Version 1.0.3-2.13 (latest)
Created 22 April 2016.
A Gradle plugin for running JMeter Tests
Add this plugin to your build using the plugins DSL:
plugins {
id("com.netas.jmeter") version "1.0.3-2.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("com.netas.jmeter:com.netas.jmeter.gradle.plugin:1.0.3-2.13") }
It can then be applied in the precompiled script plugin:plugins { id("com.netas.jmeter") }
-
The legacy method of plugin application.
See the relevant documentation for more information.buildscript { repositories { gradlePluginPortal() } dependencies { classpath("com.netas.jmeter:com.netas.jmeter.gradle.plugin:1.0.3-2.13") } } apply(plugin = "com.netas.jmeter")
- Applying plugins to all subprojects .