{"id":47097991,"url":"https://github.com/gw-kit/delta-coverage-plugin","last_synced_at":"2026-03-12T14:55:36.268Z","repository":{"id":153723954,"uuid":"614080411","full_name":"gw-kit/delta-coverage-plugin","owner":"gw-kit","description":"Gradle plugin and CLI for computing code coverage of new/modified code based on a diff","archived":false,"fork":false,"pushed_at":"2026-03-07T23:51:14.000Z","size":3271,"stargazers_count":34,"open_issues_count":6,"forks_count":8,"subscribers_count":1,"default_branch":"main","last_synced_at":"2026-03-07T23:56:21.536Z","etag":null,"topics":["code-coverage","diff","gradle-plugin","intellij-coverage","jacoco","java","kotlin"],"latest_commit_sha":null,"homepage":"https://gw-kit.github.io/delta-coverage-plugin","language":"Kotlin","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/gw-kit.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":"docs/CONTRIBUTING.md","funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2023-03-14T21:12:24.000Z","updated_at":"2026-02-23T12:09:53.000Z","dependencies_parsed_at":null,"dependency_job_id":"a980eb07-fbb1-4452-ae4f-4d35b3f95007","html_url":"https://github.com/gw-kit/delta-coverage-plugin","commit_stats":null,"previous_names":["gw-kit/delta-coverage-plugin"],"tags_count":39,"template":false,"template_full_name":null,"purl":"pkg:github/gw-kit/delta-coverage-plugin","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/gw-kit%2Fdelta-coverage-plugin","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/gw-kit%2Fdelta-coverage-plugin/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/gw-kit%2Fdelta-coverage-plugin/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/gw-kit%2Fdelta-coverage-plugin/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/gw-kit","download_url":"https://codeload.github.com/gw-kit/delta-coverage-plugin/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/gw-kit%2Fdelta-coverage-plugin/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":30429099,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-03-12T14:34:45.044Z","status":"ssl_error","status_checked_at":"2026-03-12T14:09:33.793Z","response_time":114,"last_error":"SSL_read: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["code-coverage","diff","gradle-plugin","intellij-coverage","jacoco","java","kotlin"],"created_at":"2026-03-12T14:55:35.729Z","updated_at":"2026-03-12T14:55:36.259Z","avatar_url":"https://github.com/gw-kit.png","language":"Kotlin","readme":"# Delta Coverage\n\n[![GitHub Release](https://img.shields.io/github/v/release/SurpSG/delta-coverage-plugin)](https://github.com/gw-kit/delta-coverage-plugin/releases)\n[![Build](https://github.com/gw-kit/delta-coverage-plugin/actions/workflows/build.yml/badge.svg?branch=main)](https://github.com/gw-kit/delta-coverage-plugin/actions/workflows/build.yml)\n[![GitHub issues](https://img.shields.io/github/issues/SurpSG/delta-coverage-plugin)](https://github.com/SurpSG/delta-coverage-plugin/issues)\n[![GitHub stars](https://img.shields.io/github/stars/SurpSG/delta-coverage-plugin?style=flat-square)](https://github.com/SurpSG/delta-coverage-plugin/stargazers)\n\n![aggregated](https://raw.githubusercontent.com/gw-kit/coverage-badges/refs/heads/main/delta-coverage-plugin/badges/aggregated.svg)\n![functionalTest](https://raw.githubusercontent.com/gw-kit/coverage-badges/refs/heads/main/delta-coverage-plugin/badges/functionalTest.svg)\n![test](https://raw.githubusercontent.com/gw-kit/coverage-badges/refs/heads/main/delta-coverage-plugin/badges/test.svg)\n\n**Code coverage for what matters — your changes.**\n\nDelta Coverage is a Gradle plugin that computes code coverage of new/modified code based on a git diff. Focus on testing what you've changed, not the entire codebase.\n\n📖 **[Full Documentation](https://gw-kit.github.io/delta-coverage-plugin)**\n\n\u003cimg src=\"https://user-images.githubusercontent.com/8483470/77781538-a74f3480-704d-11ea-9e39-051f1001b88a.png\" width=\"600\" alt=\"Delta Coverage HTML Report\"/\u003e\n\n## Quick Start\n\n**1. Apply the plugin** (root project)\n\n```kotlin\nplugins {\n    id(\"io.github.gw-kit.delta-coverage\") version \"3.6.0\"\n}\n```\n\n**2. Configure diff source**\n\n```kotlin\nconfigure\u003cio.github.surpsg.deltacoverage.gradle.DeltaCoverageConfiguration\u003e {\n    diffSource.git.compareWith.set(\"refs/remotes/origin/main\")\n}\n```\n\n**3. Run**\n\n```bash\n./gradlew test deltaCoverage\n```\n\nReports are generated in `build/reports/coverage-reports/`.\n\n## Compatibility\n\n| Delta Coverage | Gradle | Min JVM |\n|----------------|--------|---------|\n| 3.x | 7.6.4+ | 17 |\n| 2.5.x | 6.7.1 - 8.10.2 | 11 |\n\n## Related Projects\n\n- [delta-coverage-action](https://github.com/gw-kit/delta-coverage-action) — GitHub Action for PR comments\n- [delta-coverage-cli](delta-coverage-cli/README.md) — Standalone CLI tool\n- [cover-jet-plugin](https://github.com/gw-kit/cover-jet-plugin) — IntelliJ coverage for Gradle\n\n## License\n\nMIT\n","funding_links":[],"categories":["Projects"],"sub_categories":["Code Coverage"],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fgw-kit%2Fdelta-coverage-plugin","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fgw-kit%2Fdelta-coverage-plugin","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fgw-kit%2Fdelta-coverage-plugin/lists"}