Search Gradle plugins

Version 0.1.0 (latest)

Created 27 January 2021.

Define, run and analyse BDD feature test suites using Cucumber

Using the plugins DSL:

plugins {
  id("dev.hworblehat.gradlecumber") version "0.1.0"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("dev.hworblehat:gradlecumber:0.1.0")
  }
}

apply(plugin = "dev.hworblehat.gradlecumber")

Using the plugins DSL:

plugins {
  id "dev.hworblehat.gradlecumber" version "0.1.0"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "dev.hworblehat:gradlecumber:0.1.0"
  }
}

apply plugin: "dev.hworblehat.gradlecumber"

Learn how to apply plugins to subprojects