Search Gradle plugins

com.github.dave99galloway.cucumbertest.gradle.CucumberTestPlugin

A cucumber gradle plugin implemented using javaexec. This plugin adds a task called 'cucumberTest' to your cucumber-jvm project enabling you to run tests through gradle using the cucumber cli. Configuration is done at the plugin level and the options to do this are documented in com.github.dave99galloway.gradle.cucumbertest.CucumberTestPluginExtension

https://github.com/dave99galloway/cucumberTest

Sources: https://github.com/dave99galloway/cucumberTest

Version 1.4

Created 01 June 2021.

A cucumber gradle plugin implemented using javaexec.
This plugin adds a task called 'cucumberTest' to your cucumber-jvm project enabling you to run tests through gradle using
the cucumber cli. Configuration is done at the plugin level and the options to do this are documented in
com.github.dave99galloway.gradle.cucumbertest.CucumberTestPluginExtension

Using the plugins DSL:

plugins {
  id("com.github.dave99galloway.cucumbertest.gradle.CucumberTestPlugin") version "1.4"
}

Using legacy plugin application:

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

apply(plugin = "com.github.dave99galloway.cucumbertest.gradle.CucumberTestPlugin")

Using the plugins DSL:

plugins {
  id "com.github.dave99galloway.cucumbertest.gradle.CucumberTestPlugin" version "1.4"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "com.github.dave99galloway:plugin:1.4"
  }
}

apply plugin: "com.github.dave99galloway.cucumbertest.gradle.CucumberTestPlugin"

Learn how to apply plugins to subprojects