Search Gradle plugins

Version 0.9 (latest)

Created 08 September 2015.

No version description available.

Using the plugins DSL:

plugins {
  id("com.github.samueltbrown.cucumber") version "0.9"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("com.github.samueltbrown:gradle-cucumber-plugin:0.9")
  }
}

apply(plugin = "com.github.samueltbrown.cucumber")

Using the plugins DSL:

plugins {
  id "com.github.samueltbrown.cucumber" version "0.9"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "com.github.samueltbrown:gradle-cucumber-plugin:0.9"
  }
}

apply plugin: "com.github.samueltbrown.cucumber"

Learn how to apply plugins to subprojects