io.github.daggerok.soapui-runner
Owner: Maksim Kostromin
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 testrunner and loadtestrunner.
https://daggerok.github.io/soapui-runner
Sources: https://github.com/daggerok/soapui-runner.git
Version 5.3.1-RC-4 (latest)
5.3.1-RC-4
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 testrunner and loadtestrunner.
Using the plugins DSL:
plugins {
id("io.github.daggerok.soapui-runner") version "5.3.1-RC-4"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("gradle.plugin.io.github.daggerok:soapui-runner:5.3.1-RC-4")
}
}
apply(plugin = "io.github.daggerok.soapui-runner")
Using the plugins DSL:
plugins {
id "io.github.daggerok.soapui-runner" version "5.3.1-RC-4"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "gradle.plugin.io.github.daggerok:soapui-runner:5.3.1-RC-4"
}
}
apply plugin: "io.github.daggerok.soapui-runner"