搜索Gradle插件

版本 1.4 (最新)

1.4

创建于 2018年2月3日。

此插件版本将在JCenter成为一个永久重定向到Maven Central之后不再解决,因为它只使用JCenter提供的依赖项。有关详细信息,请参阅以下博文:https://blog.gradle.org.cn/portal-jcenter-impact 一个用于下载和缓存构建运行的操作系统特定的WebDriver二进制文件的插件。

使用插件DSL

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

使用旧插件应用程序

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

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

使用插件DSL

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

使用旧插件应用程序

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

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

学习如何将插件应用到子项目中