Search Gradle plugins

Version 7.0 (latest)

7.0

Created 02 January 2023.

A plugin that simplifies running Geb tests at Sauce Labs

Add this plugin to your build using the plugins DSL:

plugins {
  id("org.gebish.saucelabs") version "7.0"
}

See also:

  • The legacy method of plugin application.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("org.gebish:geb-gradle:7.0")
      }
    }
    
    apply(plugin = "org.gebish.saucelabs")
  • Applying plugins to all subprojects .