io.github.daggerok.soapui-testrunner
所有者: Maksim Kostromin
SoapUI 运行器 Gradle 插件。请确保您已在 buildscript 中添加了所需的插件仓库:maven { url 'http://smartbearsoftware.com/repository/maven2/' } 允许使用 testrunner 运行 SoapUI 测试套件和测试用例。
https://daggerok.github.io/soapui-runner
源码:https://github.com/daggerok/soapui-runner.git
版本 5.3.1-RC-4(最新版本)
5.3.1-RC-4
创建于 2017年8月4日。
SoapUI 运行器 Gradle 插件。请确保您也在 buildscript 中添加了所需的插件仓库:maven { url 'http://smartbearsoftware.com/repository/maven2/' } 允许使用 testrunner 运行 SoapUI 测试套件和测试用例。
使用 插件 DSL
plugins {
id("io.github.daggerok.soapui-testrunner") version "5.3.1-RC-4"
}
使用 旧插件的旧应用方式
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org.cn/m2/")
}
}
dependencies {
classpath("gradle.plugin.io.github.daggerok:soapui-runner:5.3.1-RC-4")
}
}
apply(plugin = "io.github.daggerok.soapui-testrunner")
使用 插件 DSL
plugins {
id "io.github.daggerok.soapui-testrunner" version "5.3.1-RC-4"
}
使用 旧插件的旧应用方式
buildscript {
repositories {
maven {
url "https://plugins.gradle.org.cn/m2/"
}
}
dependencies {
classpath "gradle.plugin.io.github.daggerok:soapui-runner:5.3.1-RC-4"
}
}
apply plugin: "io.github.daggerok.soapui-testrunner"