Search Gradle plugins

com.awbriggs.cucumber-jvm

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

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

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

Version 0.1

Created 01 February 2019.

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.awbriggs.cucumber-jvm") version "0.1"
}

Using legacy plugin application:

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

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

Using the plugins DSL:

plugins {
  id "com.awbriggs.cucumber-jvm" version "0.1"
}

Using legacy plugin application:

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

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

Learn how to apply plugins to subprojects