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.3 (latest)

3.3

Created 29 August 2024.

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.3"
}

Using legacy plugin application:

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

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

Using the plugins DSL:

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

Using legacy plugin application:

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

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

Learn how to apply plugins to subprojects