Search Gradle plugins

Version 4.0 (latest)

Created 07 January 2019.

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

Using the plugins DSL:

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

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("gradle.plugin.com.prot.wholetest:whole-test-gradle-plugin:4.0")
  }
}

apply(plugin = "com.prot.wholetest")

Using the plugins DSL:

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

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "gradle.plugin.com.prot.wholetest:whole-test-gradle-plugin:4.0"
  }
}

apply plugin: "com.prot.wholetest"

Learn how to apply plugins to subprojects