Search Gradle plugins

Version 0.4

Created 28 November 2018.

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.4"
}

Using legacy plugin application:

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

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

Using the plugins DSL:

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

Using legacy plugin application:

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

apply plugin: "org.rewedigital.frost"

Learn how to apply plugins to subprojects