org.watheia.screenplay
Owner: Watheia Labs, LLC
Very simple plugin that configures a project to run Serenity BDD tests w/ Cucumber using Screenplay Patern
Sources: https://gitlab.com/watheia/labs/gradle-screenplay
Version 1.0.0-beta2 (latest)
1.0.0-beta2
Created 27 January 2021.
Very simple plugin that configures a project to run Serenity BDD tests w/ Cucumber using Screenplay Patern
Using the plugins DSL:
plugins {
id("org.watheia.screenplay") version "1.0.0-beta2"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("gradle.plugin.org.watheia:gradle-screenplay:1.0.0-beta2")
}
}
apply(plugin = "org.watheia.screenplay")
Using the plugins DSL:
plugins {
id "org.watheia.screenplay" version "1.0.0-beta2"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "gradle.plugin.org.watheia:gradle-screenplay:1.0.0-beta2"
}
}
apply plugin: "org.watheia.screenplay"