Skip to content

Badya/kotlinx-kover

 
 

Repository files navigation

Kover Gradle Plugin

Kotlin Alpha JetBrains incubator project GitHub license

Kover - Gradle plugin for Kotlin code coverage tools: Kover and JaCoCo.

Minimum supported version of Gradle is 6.8.

For more information, please refer to the documentation of the latest release

Features

  • Collection of code coverage through JVM test tasks.
  • HTML and XML reports.
  • Support for Kotlin/JVM, Kotlin Multiplatform and mixed Kotlin-Java sources with zero additional configuration.
  • Support for Kotlin Android without the need to divide it into build types and flavours.
  • Verification rules with bounds to keep track of coverage.
  • Customizable filters for instrumented classes.

Quickstart

The recommended way of applying Kover is with the plugins DSL.

Add the following to your top-level build file:

Kotlin
plugins {
     id("org.jetbrains.kotlinx.kover") version "0.6.1"
}
Groovy
plugins {
    id 'org.jetbrains.kotlinx.kover' version '0.6.1'
}

Legacy Plugin Application

Legacy method of applying plugins can be used if you cannot use the plugins DSL for some reason.

Kotlin
buildscript {
    repositories {
        mavenCentral()
    }

    dependencies {
        classpath("org.jetbrains.kotlinx:kover:0.6.1")
    }
}

apply(plugin = "kover")
Groovy
buildscript {
    repositories {
        mavenCentral()
    }
    dependencies {
        classpath 'org.jetbrains.kotlinx:kover:0.6.1'
    }
}
  
apply plugin: 'kover'    

About

No description, website, or topics provided.

Resources

License

Code of conduct

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Kotlin 100.0%