io.kitkit.coverage
                  Owner:
                  
                    
                    rob boll
                  
                
these aren't the droids you're looking for
Sources: https://github.com/kitkitcode/gradle-base
Version 0.10.62 (latest)
Created 19 October 2015.
                these aren't the droids you're looking for
                
            
            
            
                
            
            
        Add this plugin to your build using the plugins DSL:
plugins {
  id("io.kitkit.coverage") version "0.10.62"
}
              See also:
- 
                
Adding the plugin to build logic for usage in precompiled script plugins.
See the relevant documentation for more information.
Add this plugin as a dependency to
<convention-plugins-build>/build.gradle(.kts):dependencies { implementation("io.kitkit.coverage:io.kitkit.coverage.gradle.plugin:0.10.62") }It can then be applied in the precompiled script plugin:plugins { id("io.kitkit.coverage") } - 
                
The legacy method of plugin application.
See the relevant documentation for more information.buildscript { repositories { gradlePluginPortal() } dependencies { classpath("io.kitkit.coverage:io.kitkit.coverage.gradle.plugin:0.10.62") } } apply(plugin = "io.kitkit.coverage") - Applying plugins to all subprojects .