{"id":20721628,"url":"https://github.com/fslev/maven-cucumber-reporting-extended","last_synced_at":"2026-04-20T12:34:14.556Z","repository":{"id":57733253,"uuid":"390654275","full_name":"fslev/maven-cucumber-reporting-extended","owner":"fslev","description":null,"archived":false,"fork":false,"pushed_at":"2024-05-22T12:35:15.000Z","size":44,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-07-19T01:52:58.670Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"Java","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/fslev.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}},"created_at":"2021-07-29T08:27:30.000Z","updated_at":"2024-05-22T12:35:18.000Z","dependencies_parsed_at":"2024-11-17T03:28:53.971Z","dependency_job_id":"11e130fb-c839-4777-9a0a-291e68f85d98","html_url":"https://github.com/fslev/maven-cucumber-reporting-extended","commit_stats":null,"previous_names":[],"tags_count":8,"template":false,"template_full_name":null,"purl":"pkg:github/fslev/maven-cucumber-reporting-extended","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/fslev%2Fmaven-cucumber-reporting-extended","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/fslev%2Fmaven-cucumber-reporting-extended/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/fslev%2Fmaven-cucumber-reporting-extended/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/fslev%2Fmaven-cucumber-reporting-extended/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/fslev","download_url":"https://codeload.github.com/fslev/maven-cucumber-reporting-extended/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/fslev%2Fmaven-cucumber-reporting-extended/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":32047325,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-20T11:35:06.609Z","status":"ssl_error","status_checked_at":"2026-04-20T11:34:48.899Z","response_time":94,"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":"2024-11-17T03:28:44.963Z","updated_at":"2026-04-20T12:34:14.532Z","avatar_url":"https://github.com/fslev.png","language":"Java","funding_links":[],"categories":[],"sub_categories":[],"readme":"[![Maven Central](https://img.shields.io/maven-central/v/io.github.fslev/maven-cucumber-reporting-extended.svg?label=Maven%20Central)](https://search.maven.org/search?q=g:%22io.github.fslev%22%20AND%20a:%22maven-cucumber-reporting-extended%22)\n\nThis a prettified version of maven-cucumber-reporting  \n\nMaven mojo for the cucumber-reporting - put this into your `pom.xml` and run `mvn verify` so cucumber reports will be generated in `target/cucumber-html-reports`  \n\nRead more about the project and configuration here:\n- [cucumber-reports](https://github.com/damianszczepanik/cucumber-reporting)  \n- [maven-cucumber-reports](https://github.com/damianszczepanik/maven-cucumber-reporting)\n\n## Set maven plugin inside you Maven project\n```\n\u003cbuild\u003e\n    \u003cplugins\u003e\n        \u003cplugin\u003e\n            \u003cgroupId\u003eio.github.fslev\u003c/groupId\u003e\n            \u003cartifactId\u003emaven-cucumber-reporting-extended\u003c/artifactId\u003e\n            \u003cversion\u003e(see latest version above)\u003c/version\u003e\n            \u003cexecutions\u003e\n                \u003cexecution\u003e\n                    \u003cid\u003eexecution\u003c/id\u003e\n                    \u003cphase\u003everify\u003c/phase\u003e\n                    \u003cgoals\u003e\n                        \u003cgoal\u003egenerate\u003c/goal\u003e\n                    \u003c/goals\u003e\n                    \u003cconfiguration\u003e\n                        \u003cprojectName\u003eMy project\u003c/projectName\u003e\n                        \u003cskip\u003efalse\u003c/skip\u003e\n                        \u003coutputDirectory\u003e${project.build.directory}\u003c/outputDirectory\u003e\n                        \u003cinputDirectory\u003e${project.build.directory}/cucumber-report\u003c/inputDirectory\u003e\n                        \u003cjsonFiles\u003e\n                            \u003cparam\u003e**/*.json\u003c/param\u003e\n                        \u003c/jsonFiles\u003e\n                        \u003cclassificationFiles\u003e\n                            \u003cclassificationFile\u003ecucumber-report/classification.properties\n                            \u003c/classificationFile\u003e\n                        \u003c/classificationFiles\u003e\n                        \u003ccheckBuildResult\u003efalse\u003c/checkBuildResult\u003e\n                    \u003c/configuration\u003e\n                \u003c/execution\u003e\n            \u003c/executions\u003e\n        \u003c/plugin\u003e\n    \u003c/plugins\u003e\n\u003c/build\u003e\n```","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ffslev%2Fmaven-cucumber-reporting-extended","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Ffslev%2Fmaven-cucumber-reporting-extended","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ffslev%2Fmaven-cucumber-reporting-extended/lists"}