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
- Host: GitHub
- URL: https://github.com/hypertrace/hypertrace-gradle-jacoco-report-plugin
- Owner: hypertrace
- License: apache-2.0
- Created: 2020-06-25T20:29:14.000Z (over 5 years ago)
- Default Branch: main
- Last Pushed: 2023-02-27T20:46:43.000Z (almost 3 years ago)
- Last Synced: 2025-01-21T17:49:53.127Z (about 1 year ago)
- Language: Java
- Size: 85 KB
- Stars: 0
- Watchers: 4
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE.txt
- Codeowners: .github/CODEOWNERS
Awesome Lists containing this project
README
# Hypertrace Jacoco Report Plugin
###### org.hypertrace.jacoco-report-plugin
[](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 ""
}
```