Search Gradle plugins

Version 1.0.2 (latest)

Created 14 November 2016.

Configuration of acceptance test

Using the plugins DSL:

plugins {
  id("com.marksandspencer.acceptance-test") version "1.0.2"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("gradle.plugin.com.marksandspencer:mands-gradle-acceptance-test:1.0.2")
  }
}

apply(plugin = "com.marksandspencer.acceptance-test")

Using the plugins DSL:

plugins {
  id "com.marksandspencer.acceptance-test" version "1.0.2"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "gradle.plugin.com.marksandspencer:mands-gradle-acceptance-test:1.0.2"
  }
}

apply plugin: "com.marksandspencer.acceptance-test"

Learn how to apply plugins to subprojects