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-beta2 (latest)

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"

Learn how to apply plugins to subprojects