Search Gradle plugins

io.whiteley.luke.tdl

Reflects Gradle test results (Red/Green) in a given Philips Hue room

https://github.com/lawhiteley/tdl

Sources: https://github.com/lawhiteley/tdl

Version 1.0.0 (latest)

Created 22 March 2020.

Reflects Gradle test results (Red/Green) in a given Philips Hue room

Using the plugins DSL:

plugins {
  id("io.whiteley.luke.tdl") version "1.0.0"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("io.whiteley.luke:tdl:1.0.0")
  }
}

apply(plugin = "io.whiteley.luke.tdl")

Using the plugins DSL:

plugins {
  id "io.whiteley.luke.tdl" version "1.0.0"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "io.whiteley.luke:tdl:1.0.0"
  }
}

apply plugin: "io.whiteley.luke.tdl"

Learn how to apply plugins to subprojects