{"id":46534062,"url":"https://github.com/ringcentral-docker/jacoco-tool","last_synced_at":"2026-03-06T23:08:27.746Z","repository":{"id":332694842,"uuid":"1133274460","full_name":"ringcentral-docker/jacoco-tool","owner":"ringcentral-docker","description":null,"archived":false,"fork":false,"pushed_at":"2026-01-15T03:14:18.000Z","size":518,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2026-01-15T09:13:53.372Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"Dockerfile","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/ringcentral-docker.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"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":"2026-01-13T05:54:37.000Z","updated_at":"2026-01-15T03:14:22.000Z","dependencies_parsed_at":null,"dependency_job_id":null,"html_url":"https://github.com/ringcentral-docker/jacoco-tool","commit_stats":null,"previous_names":["ringcentral-docker/jacoco-tool"],"tags_count":null,"template":false,"template_full_name":null,"purl":"pkg:github/ringcentral-docker/jacoco-tool","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ringcentral-docker%2Fjacoco-tool","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ringcentral-docker%2Fjacoco-tool/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ringcentral-docker%2Fjacoco-tool/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ringcentral-docker%2Fjacoco-tool/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/ringcentral-docker","download_url":"https://codeload.github.com/ringcentral-docker/jacoco-tool/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ringcentral-docker%2Fjacoco-tool/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":30202539,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-03-06T19:07:06.838Z","status":"ssl_error","status_checked_at":"2026-03-06T18:57:34.882Z","response_time":250,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.6:443 state=error: 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":[],"created_at":"2026-03-06T23:08:25.424Z","updated_at":"2026-03-06T23:08:27.738Z","avatar_url":"https://github.com/ringcentral-docker.png","language":"Dockerfile","funding_links":[],"categories":[],"sub_categories":[],"readme":"# JaCoCo Tool Docker Image\n\nA Docker image that provides JaCoCo CLI and Swagger Coverage tools for Java code coverage analysis and API testing.\n\n## Overview\n\nThis Docker image is built on top of `ringcentral/jdk:17-noble` and includes:\n\n- **JaCoCo CLI**: Java Code Coverage Library command-line interface\n- **Swagger Coverage**: API coverage analysis tool\n- Essential development tools (git, curl, wget, zip, etc.)\n\n## Features\n\n- 🚀 Based on JDK 17 (Ubuntu Noble)\n- 📊 Pre-installed JaCoCo CLI for code coverage reporting\n- 🔍 Swagger Coverage tool for API testing coverage\n- 🛠️ Common development utilities included\n- ⚡ Automated builds via GitHub Actions\n\n## Quick Start\n\n### Pull the Image\n\n```bash\ndocker pull ringcentral/jacoco-tool:latest\n```\n\n### Run JaCoCo CLI\n\n```bash\ndocker run --rm -v $(pwd):/workspace ringcentral/jacoco-tool:latest \\\n  java -jar /opt/jacoco/jacococli.jar \u003ccommand\u003e \u003coptions\u003e\n```\n\n### Run Swagger Coverage\n\n```bash\ndocker run --rm -v $(pwd):/workspace ringcentral/jacoco-tool:latest \\\n  swagger-coverage \u003ccommand\u003e \u003coptions\u003e\n```\n\n## Usage Examples\n\n### Generate JaCoCo Report\n\n```bash\ndocker run --rm \\\n  -v $(pwd):/workspace \\\n  -w /workspace \\\n  ringcentral/jacoco-tool:latest \\\n  java -jar /opt/jacoco/jacococli.jar report jacoco.exec \\\n  --classfiles ./build/classes \\\n  --sourcefiles ./src/main/java \\\n  --html ./coverage-report\n```\n\n### Merge JaCoCo Execution Files\n\n```bash\ndocker run --rm \\\n  -v $(pwd):/workspace \\\n  -w /workspace \\\n  ringcentral/jacoco-tool:latest \\\n  java -jar /opt/jacoco/jacococli.jar merge *.exec \\\n  --destfile merged.exec\n```\n\n## Included Tools\n\n| Tool             | Location                          | Description             |\n| ---------------- | --------------------------------- | ----------------------- |\n| JaCoCo CLI       | `/opt/jacoco/jacococli.jar`       | Java code coverage tool |\n| Swagger Coverage | `/usr/local/bin/swagger-coverage` | API coverage analysis   |\n| Git              | System installed                  | Version control         |\n| Maven/Gradle     | Via JDK                           | Build tools support     |\n\n## Image Tags\n\n- `latest`: Latest stable version\n- `17-noble`: Specific JDK version tag\n\n## Building Locally\n\n```bash\ncd images\ndocker build -t jacoco-tool:local -f Dockerfile .\n```\n\n## CI/CD\n\nThis project uses GitHub Actions for automated builds:\n\n- Triggers on pushes to `main` branch\n- Automatically builds and pushes to Docker Hub\n- Tags images with version from Dockerfile\n\n## Requirements\n\n- Docker 20.10+\n- Docker Hub account (for pulling images)\n\n## Contributing\n\n1. Fork the repository\n2. Create your feature branch (`git checkout -b feature/amazing-feature`)\n3. Commit your changes (`git commit -m 'Add some amazing feature'`)\n4. Push to the branch (`git push origin feature/amazing-feature`)\n5. Open a Pull Request\n\n## License\n\nThis project is open source and available under the MIT License.\n\n## Support\n\nFor issues and questions:\n\n- Open an issue on GitHub\n- Contact the RingCentral DevOps team\n\n## References\n\n- [JaCoCo Documentation](https://www.jacoco.org/jacoco/trunk/doc/)\n- [Swagger Coverage GitHub](https://github.com/xingyu-he/swagger-coverage)\n- [Docker Hub Repository](https://hub.docker.com/r/ringcentral/jacoco-tool)\n\n---\n\n**Maintained by**: RingCentral DevOps Team\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fringcentral-docker%2Fjacoco-tool","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fringcentral-docker%2Fjacoco-tool","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fringcentral-docker%2Fjacoco-tool/lists"}