Search Gradle plugins

Version 0.17.2

Created 06 December 2023.

Generate fast deterministic screenshots during Android instrumentation tests. Configuration Cache compatibility included

Using the plugins DSL:

plugins {
  id("io.github.usefulness.screenshot-testing-plugin") version "0.17.2"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("io.github.usefulness:screenshot-testing-plugin:0.17.2")
  }
}

apply(plugin = "io.github.usefulness.screenshot-testing-plugin")

Using the plugins DSL:

plugins {
  id "io.github.usefulness.screenshot-testing-plugin" version "0.17.2"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "io.github.usefulness:screenshot-testing-plugin:0.17.2"
  }
}

apply plugin: "io.github.usefulness.screenshot-testing-plugin"

Learn how to apply plugins to subprojects