com.github.erdi.webdriver-binaries
所有者: Marcin Erdmann
一个下载并缓存针对构建运行的操作系统特定 WebDriver 执行文件的插件。
https://github.com/erdi/webdriver-binaries-gradle-plugin/blob/master/README.md
源代码: https://github.com/erdi/webdriver-binaries-gradle-plugin
使用 插件 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"