com.github.erdi.webdriver-binaries
Owner: Marcin Erdmann
A plugin that downloads and caches WebDriver binaries specific to the OS the build runs on.
https://github.com/erdi/webdriver-binaries-gradle-plugin/blob/master/README.md
Sources: https://github.com/erdi/webdriver-binaries-gradle-plugin
Version 3.2 (latest)
3.2
Created 08 August 2023.
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 "3.2"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("com.github.erdi:webdriver-binaries-gradle-plugin:3.2")
}
}
apply(plugin = "com.github.erdi.webdriver-binaries")
Using the plugins DSL:
plugins {
id "com.github.erdi.webdriver-binaries" version "3.2"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "com.github.erdi:webdriver-binaries-gradle-plugin:3.2"
}
}
apply plugin: "com.github.erdi.webdriver-binaries"