Search Gradle plugins

Version 1.8.0 (latest)

Created 18 October 2022.

Auto-update Chromedriver for Selenium with this plugin

Using the plugins DSL:

plugins {
  id("eu.leontebbens.gradle.chromedriver-updater") version "1.8.0"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("gradle.plugin.eu.leontebbens.gradle:chromedriver-updater-plugin:1.8.0")
  }
}

apply(plugin = "eu.leontebbens.gradle.chromedriver-updater")

Using the plugins DSL:

plugins {
  id "eu.leontebbens.gradle.chromedriver-updater" version "1.8.0"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "gradle.plugin.eu.leontebbens.gradle:chromedriver-updater-plugin:1.8.0"
  }
}

apply plugin: "eu.leontebbens.gradle.chromedriver-updater"

Learn how to apply plugins to subprojects