Search Gradle plugins

Version 5.3.0.RELEASE (latest)

Created 25 February 2018.

Gradle plugin for running SoapUI test projects using testrunner

Using the plugins DSL:

plugins {
  id("io.byteshifter.soapui") version "5.3.0.RELEASE"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("gradle.plugin.io.byteshifter:soapui-gradle-plugin:5.3.0.RELEASE")
  }
}

apply(plugin = "io.byteshifter.soapui")

Using the plugins DSL:

plugins {
  id "io.byteshifter.soapui" version "5.3.0.RELEASE"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "gradle.plugin.io.byteshifter:soapui-gradle-plugin:5.3.0.RELEASE"
  }
}

apply plugin: "io.byteshifter.soapui"

Learn how to apply plugins to subprojects