Search Gradle plugins

org.watheia.screenplay

Very simple plugin that configures a project to run Serenity BDD tests w/ Cucumber using Screenplay Patern

https://www.watheia.org

Sources: https://gitlab.com/watheia/labs/gradle-screenplay

Version 1.0.0-beta1

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-beta1"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("org.watheia:gradle-screenplay:1.0.0-beta1")
  }
}

apply(plugin = "org.watheia.screenplay")

Using the plugins DSL:

plugins {
  id "org.watheia.screenplay" version "1.0.0-beta1"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "org.watheia:gradle-screenplay:1.0.0-beta1"
  }
}

apply plugin: "org.watheia.screenplay"

Learn how to apply plugins to subprojects