Search Gradle plugins

com.commercehub.cucumber-jvm

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

https://github.com/commercehub-oss/gradle-cucumber-jvm-plugin

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

Version 0.10

Created 17 July 2017.

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.commercehub.cucumber-jvm") version "0.10"
}

Using legacy plugin application:

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

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

Using the plugins DSL:

plugins {
  id "com.commercehub.cucumber-jvm" version "0.10"
}

Using legacy plugin application:

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

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

Learn how to apply plugins to subprojects