搜索 Gradle 插件

org.rewedigital.frost

所有者: Sebastian Glahn

创建系统测试运行时,以在 CI 构建过程中启用强大的 UI 测试。

https://github.com/rewe-digital-incubator/frost

源码: https://github.com/rewe-digital-incubator/frost

版本 0.5.1(最新版)

0.5.1

创建时间:2019年1月4日。

创建系统测试运行时,以在 CI 构建过程中启用强大的 UI 测试。

使用 插件 DSL

plugins {
  id("org.rewedigital.frost") version "0.5.1"
}

使用 旧插件应用方式

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org.cn/m2/")
    }
  }
  dependencies {
    classpath("org.rewedigital:frost:0.5.1")
  }
}

apply(plugin = "org.rewedigital.frost")

使用 插件 DSL

plugins {
  id "org.rewedigital.frost" version "0.5.1"
}

使用 旧插件应用方式

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org.cn/m2/"
    }
  }
  dependencies {
    classpath "org.rewedigital:frost:0.5.1"
  }
}

apply plugin: "org.rewedigital.frost"

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