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 2.2

2.2

Created 21 January 2020.

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

See also:

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