Search Gradle plugins

Version 1.0 (latest)

1.0

Created 13 November 2021.

Setup plugin for the Canary testing framework

Add this plugin to your build using the plugins DSL:

plugins {
  id("com.mattworzala.canary") version "1.0"
}

See also:

  • The legacy method of plugin application.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("com.mattworzala:canary:1.0")
      }
    }
    
    apply(plugin = "com.mattworzala.canary")
  • Applying plugins to all subprojects .