Search Gradle plugins

com.patdouble.cucumber-jvm

The gradle cucumber-jvm plugin provides the ability to run cucumber acceptance tests directly from a Gradle build.

https://github.com/double16/gradle-cucumber-jvm-plugin

Sources: https://github.com/double16/gradle-cucumber-jvm-plugin

Version 0.20 (latest)

Created 01 April 2021.

The gradle cucumber-jvm plugin provides the ability to run cucumber acceptance tests directly from a Gradle build.

Using the plugins DSL:

plugins {
  id("com.patdouble.cucumber-jvm") version "0.20"
}

Using legacy plugin application:

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

apply(plugin = "com.patdouble.cucumber-jvm")

Using the plugins DSL:

plugins {
  id "com.patdouble.cucumber-jvm" version "0.20"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "com.patdouble:gradle-cucumber-jvm-plugin:0.20"
  }
}

apply plugin: "com.patdouble.cucumber-jvm"

Learn how to apply plugins to subprojects