Search Gradle plugins

Version 0.5.1 (latest)

Created 04 January 2019.

Creates a system test runtime to enable powerful UI testing during your CI build.

Using the plugins DSL:

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

Using legacy plugin application:

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

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

Using the plugins DSL:

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

Using legacy plugin application:

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

apply plugin: "org.rewedigital.frost"

Learn how to apply plugins to subprojects