Search Gradle plugins

Version 1.4 (latest)

Created 03 February 2018.

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

Using the plugins DSL:

plugins {
  id("com.energizedwork.webdriver-binaries") version "1.4"
}

Using legacy plugin application:

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

apply(plugin = "com.energizedwork.webdriver-binaries")

Using the plugins DSL:

plugins {
  id "com.energizedwork.webdriver-binaries" version "1.4"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "gradle.plugin.com.energizedwork.webdriver-binaries:webdriver-binaries-gradle-plugin:1.4"
  }
}

apply plugin: "com.energizedwork.webdriver-binaries"

Learn how to apply plugins to subprojects