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 4.6.2

Created 22 July 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.

Using the plugins DSL:

plugins {
  id("io.github.daggerok.soapui-loadtestrunner") version "4.6.2"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("gradle.plugin.io.github.daggerok:soapui-runner:4.6.2")
  }
}

apply(plugin = "io.github.daggerok.soapui-loadtestrunner")

Using the plugins DSL:

plugins {
  id "io.github.daggerok.soapui-loadtestrunner" version "4.6.2"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "gradle.plugin.io.github.daggerok:soapui-runner:4.6.2"
  }
}

apply plugin: "io.github.daggerok.soapui-loadtestrunner"

Learn how to apply plugins to subprojects