Search Gradle plugins

org.myire.quill.jacoco

Configuration of and additional functionality for the standard JaCoCo plugin

https://github.com/handmadecode/quill

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

Version 3.3 (latest)

3.3

Created 29 August 2024.

Configuration of and additional functionality for the standard JaCoCo plugin

Add this plugin to your build using the plugins DSL:

plugins {
  id("org.myire.quill.jacoco") version "3.3"
}

See also:

  • The legacy method of plugin application.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("org.myire:quill:3.3")
      }
    }
    
    apply(plugin = "org.myire.quill.jacoco")
  • Applying plugins to all subprojects .