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

Add this plugin to your build using the plugins DSL:

plugins {
  id("org.watheia.screenplay") version "1.0.0-beta2"
}

See also:

  • Adding the plugin to build logic for usage in precompiled script plugins.

    See the relevant documentation for more information.

    Add this plugin as a dependency to <convention-plugins-build>/build.gradle(.kts):

    dependencies {
      implementation("org.watheia.screenplay:org.watheia.screenplay.gradle.plugin:1.0.0-beta2")
    }
    It can then be applied in the precompiled script plugin:
    plugins {
      id("org.watheia.screenplay")
    }
  • The legacy method of plugin application. See the relevant documentation for more information.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("org.watheia.screenplay:org.watheia.screenplay.gradle.plugin:1.0.0-beta2")
      }
    }
    
    apply(plugin = "org.watheia.screenplay")
  • Applying plugins to all subprojects .