Search Gradle plugins

Version 0.5.1 (latest)

0.5.1

Created 14 November 2020.

Run Firebase Test Lab tests directly from Gradle

Add this plugin to your build using the plugins DSL:

plugins {
  id("com.simple.gradle.testlab") version "0.5.1"
}

See also:

  • The legacy method of plugin application.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("com.simple.gradle.testlab:test-lab-plugin:0.5.1")
      }
    }
    
    apply(plugin = "com.simple.gradle.testlab")
  • Applying plugins to all subprojects .