搜索 Gradle 插件

版本 3.2(最新版)

3.2

创建于 2023 年 8 月 8 日。

一个下载并缓存针对构建运行的操作系统特定 WebDriver 执行文件的插件。

使用 插件 DSL

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

使用 旧插件应用程序

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

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

使用 插件 DSL

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

使用 旧插件应用程序

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

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

了解如何将插件应用到子项目中