io.github.daggerok.soapui-runner
所有者: 马克西姆·科斯特良宁
SoapUI 运行器 Gradle 插件。请确保您已在 buildscript 中添加了所需的插件存储库:maven { url 'http://smartbearsoftware.com/repository/maven2/' } 允许运行 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/' } 允许运行 SoapUI 测试运行器和负载测试运行器。
使用 plugins DSL
plugins {
id("io.github.daggerok.soapui-runner") 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-runner")
使用 plugins DSL
plugins {
id "io.github.daggerok.soapui-runner" 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-runner"