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

Add this plugin to your build using the plugins DSL:

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

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("io.whiteley.luke.tdl:io.whiteley.luke.tdl.gradle.plugin:1.0.0")
    }
    It can then be applied in the precompiled script plugin:
    plugins {
      id("io.whiteley.luke.tdl")
    }
  • The legacy method of plugin application. See the relevant documentation for more information.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("io.whiteley.luke.tdl:io.whiteley.luke.tdl.gradle.plugin:1.0.0")
      }
    }
    
    apply(plugin = "io.whiteley.luke.tdl")
  • Applying plugins to all subprojects .