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 3.1

Created 31 July 2021.

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 "3.1"
}

Using legacy plugin application:

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

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

Using the plugins DSL:

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

Using legacy plugin application:

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

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

Learn how to apply plugins to subprojects