Search Gradle plugins

io.github.daggerok.soapui-loadtestrunner

SoapUI Runner Gradle Plugin. Please, make sure you have added required plugin repository in buildscript: maven { url 'http://smartbearsoftware.com/repository/maven2/' } Allows run SoapUI Load Tests using loadtestrunner.

https://daggerok.github.io/soapui-runner

Sources: https://github.com/daggerok/soapui-runner.git

Version 5.3.1-RC-4 (latest)

Created 04 August 2017.

SoapUI Runner Gradle Plugin. Please, make sure you have also added required plugin repository in your buildscript: maven { url 'http://smartbearsoftware.com/repository/maven2/' } Allows run SoapUI Load Tests using loadtestrunner.

Add this plugin to your build using the plugins DSL:

plugins {
  id("io.github.daggerok.soapui-loadtestrunner") version "5.3.1-RC-4"
}

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.github.daggerok.soapui-loadtestrunner:io.github.daggerok.soapui-loadtestrunner.gradle.plugin:5.3.1-RC-4")
    }
    It can then be applied in the precompiled script plugin:
    plugins {
      id("io.github.daggerok.soapui-loadtestrunner")
    }
  • The legacy method of plugin application. See the relevant documentation for more information.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("io.github.daggerok.soapui-loadtestrunner:io.github.daggerok.soapui-loadtestrunner.gradle.plugin:5.3.1-RC-4")
      }
    }
    
    apply(plugin = "io.github.daggerok.soapui-loadtestrunner")
  • Applying plugins to all subprojects .