An open API service indexing awesome lists of open source software.

https://github.com/hypertrace/hypertrace-gradle-jacoco-report-plugin

A gradle plugin for easier generation of jacoco reports
https://github.com/hypertrace/hypertrace-gradle-jacoco-report-plugin

Last synced: 11 months ago
JSON representation

A gradle plugin for easier generation of jacoco reports

Awesome Lists containing this project

README

          

# Hypertrace Jacoco Report Plugin

###### org.hypertrace.jacoco-report-plugin

[![CircleCI](https://circleci.com/gh/hypertrace/hypertrace-gradle-jacoco-report-plugin.svg?style=svg)](https://circleci.com/gh/hypertrace/hypertrace-gradle-jacoco-report-plugin)
### Purpose
This plugin configures the jacoco report task for each test task in the project to be enabled
and depend on its corresponding test task. It is used in addition to the jacoco plugin.

If the respective report task is not present, then it also takes care of creating and configuring it.s

### Usages
Add the following snippet to the project's build.gradle.kts

```kotlin
plugins {
jacoco
id("org.hypertrace.jacoco-report-plugin") version ""
}
```