Search Gradle plugins

Version 2.4.1-SNAPSHOT

Created 27 October 2021.

A plugin that downloads and caches WebDriver binaries specific to the OS the build runs on.

Using the plugins DSL:

plugins {
  id("com.github.erdi.webdriver-binaries") version "2.4.1-SNAPSHOT"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("gradle.plugin.com.github.erdi.webdriver-binaries:webdriver-binaries-gradle-plugin:2.4.1-SNAPSHOT")
  }
}

apply(plugin = "com.github.erdi.webdriver-binaries")

Using the plugins DSL:

plugins {
  id "com.github.erdi.webdriver-binaries" version "2.4.1-SNAPSHOT"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "gradle.plugin.com.github.erdi.webdriver-binaries:webdriver-binaries-gradle-plugin:2.4.1-SNAPSHOT"
  }
}

apply plugin: "com.github.erdi.webdriver-binaries"

Learn how to apply plugins to subprojects