Search Gradle plugins

org.rewedigital.frost

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

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

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

Version 0.4

Created 28 November 2018.

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

Add this plugin to your build using the plugins DSL:

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

See also:

  • Adding the plugin to build logic for usage in precompiled script plugins.

    See the relevant documentation for more information.

    Add this plugin as a dependency to <convention-plugins-build>/build.gradle(.kts):

    dependencies {
      implementation("org.rewedigital.frost:org.rewedigital.frost.gradle.plugin:0.4")
    }
    It can then be applied in the precompiled script plugin:
    plugins {
      id("org.rewedigital.frost")
    }
  • The legacy method of plugin application. See the relevant documentation for more information.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("org.rewedigital.frost:org.rewedigital.frost.gradle.plugin:0.4")
      }
    }
    
    apply(plugin = "org.rewedigital.frost")
  • Applying plugins to all subprojects .