Search Gradle plugins

com.softicar.gradle.selenium.grid

Owner: SoftiCAR

This plugin is useful for projects executing unit tests based on the Selenium (https://www.selenium.dev/) framework. See the Javadoc of the plugin class for more details.

https://github.com/softicar/gradle-plugins

Sources: https://github.com/Prevent-DEV/com.softicar.gradle.plugins

Version 4.0.5 (latest)

Created 06 February 2023.

This plugin is useful for projects executing unit tests based on the Selenium (https://www.selenium.dev/) framework. See the Javadoc of the plugin class for more details.

Using the plugins DSL:

plugins {
  id("com.softicar.gradle.selenium.grid") version "4.0.5"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("com.softicar.gradle.plugins:gradle-plugins:4.0.5")
  }
}

apply(plugin = "com.softicar.gradle.selenium.grid")

Using the plugins DSL:

plugins {
  id "com.softicar.gradle.selenium.grid" version "4.0.5"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "com.softicar.gradle.plugins:gradle-plugins:4.0.5"
  }
}

apply plugin: "com.softicar.gradle.selenium.grid"

Learn how to apply plugins to subprojects