Search Gradle plugins

org.myire.quill.dashboard

One-page HTML report with a summary of other reports generated during a build

https://github.com/handmadecode/quill

Sources: https://github.com/handmadecode/quill

Version 2.2

Created 21 January 2020.

One-page HTML report with a summary of other reports generated during a build

Using the plugins DSL:

plugins {
  id("org.myire.quill.dashboard") version "2.2"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("gradle.plugin.org.myire:quill:2.2")
  }
}

apply(plugin = "org.myire.quill.dashboard")

Using the plugins DSL:

plugins {
  id "org.myire.quill.dashboard" version "2.2"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "gradle.plugin.org.myire:quill:2.2"
  }
}

apply plugin: "org.myire.quill.dashboard"

Learn how to apply plugins to subprojects