pl.kmaterka.cucumber-jvm
Owner: Konrad Materka
The gradle cucumber-jvm plugin provides the ability to run cucumber acceptance tests directly from a gradle build.
https://github.com/kmaterka/gradle-cucumber-jvm-plugin
Sources: https://github.com/kmaterka/gradle-cucumber-jvm-plugin
Version 0.16
0.16
Created 23 November 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("pl.kmaterka.cucumber-jvm") version "0.16"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("gradle.plugin.cucumber:gradle-cucumber-jvm-plugin:0.16")
}
}
apply(plugin = "pl.kmaterka.cucumber-jvm")
Using the plugins DSL:
plugins {
id "pl.kmaterka.cucumber-jvm" version "0.16"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "gradle.plugin.cucumber:gradle-cucumber-jvm-plugin:0.16"
}
}
apply plugin: "pl.kmaterka.cucumber-jvm"