Search Gradle plugins

Version 4.0 (latest)

4.0

Created 07 January 2019.

provide integration, functional, performance, docker etc end-to-end testing gradle plugin

Add this plugin to your build using the plugins DSL:

plugins {
  id("com.prot.wholetest") version "4.0"
}

See also:

  • The legacy method of plugin application.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("gradle.plugin.com.prot.wholetest:whole-test-gradle-plugin:4.0")
      }
    }
    
    apply(plugin = "com.prot.wholetest")
  • Applying plugins to all subprojects .