dev.hworblehat.gradlecumber
Owner: Rowan Lonsdale
Define, run and analyse BDD feature test suites using Cucumber
https://github.com/hWorblehat/gradlecumber
Sources: https://github.com/hWorblehat/gradlecumber
Version 0.1.0 (latest)
0.1.0
Created 27 January 2021.
Define, run and analyse BDD feature test suites using Cucumber
Using the plugins DSL:
plugins {
id("dev.hworblehat.gradlecumber") version "0.1.0"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("dev.hworblehat:gradlecumber:0.1.0")
}
}
apply(plugin = "dev.hworblehat.gradlecumber")
Using the plugins DSL:
plugins {
id "dev.hworblehat.gradlecumber" version "0.1.0"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "dev.hworblehat:gradlecumber:0.1.0"
}
}
apply plugin: "dev.hworblehat.gradlecumber"