io.byteshifter.soapui
Owner:
Sion Williams
Gradle plugin for running SoapUI projects
https://github.com/byte-shifter-ltd/soapui-gradle-plugin
Sources: https://github.com/byte-shifter-ltd/soapui-gradle-plugin
Version 5.1.2.PRO-RELEASE
Created 02 November 2018.
Gradle plugin for running SoapUI test projects using testrunner
Add this plugin to your build using the plugins DSL:
plugins {
id("io.byteshifter.soapui") version "5.1.2.PRO-RELEASE"
}
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.byteshifter.soapui:io.byteshifter.soapui.gradle.plugin:5.1.2.PRO-RELEASE") }
It can then be applied in the precompiled script plugin:plugins { id("io.byteshifter.soapui") }
-
The legacy method of plugin application.
See the relevant documentation for more information.buildscript { repositories { gradlePluginPortal() } dependencies { classpath("io.byteshifter.soapui:io.byteshifter.soapui.gradle.plugin:5.1.2.PRO-RELEASE") } } apply(plugin = "io.byteshifter.soapui")
- Applying plugins to all subprojects .