vadims / gradle-cobertura-plugin

Gradle plugin for Cobertura

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

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.0'
    }
}

apply plugin: 'cobertura'

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

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

About

Gradle plugin for Cobertura

License:Other


Languages

Language:Groovy 78.2%Language:Shell 21.8%