Skip to content
This repository has been archived by the owner on Mar 18, 2020. It is now read-only.

eriwen/gradle-cobertura-plugin

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

47 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Gradle Cobertura Plugin Build Status

Produces code coverage reports for your JVM-based projects using Cobertura

Quick Start

buildscript {
    repositories {
        mavenCentral()
    }
    dependencies {
        classpath 'com.eriwen:gradle-cobertura-plugin:1.1.1'
    }
}

apply plugin: 'cobertura'

cobertura {
    format = 'xml'
    includes = ['**/*.java', '**/*.groovy']
    excludes = ['com/thirdparty/**/*.*']
}

Configuration

  • (Optional) format = 'html' (default) or 'xml'
  • (Optional) includes = List glob paths to be reported on
  • (Optional) excludes = List glob paths to exclude from reporting
  • (Optional) ignores = List regexes of classes to exclude from instrumentation

With java plugin

When using in conjunction with the Java plugin, the test task is preconfigured for code coverage analysis. To generate the coverage report, run the testCoberturaReport task.

License

This plugin is licensed under the Apache License 2.0