{"id":18708340,"url":"https://github.com/grasshopper7/extentreports-cucumberjson-plugin","last_synced_at":"2025-10-16T22:52:07.143Z","repository":{"id":57743152,"uuid":"278593503","full_name":"grasshopper7/extentreports-cucumberjson-plugin","owner":"grasshopper7","description":"This deals with generating Extent reports for Cucumber-JVM version 4.3 and above by using a Maven Plugin which parses the Cucumber JSON report.","archived":false,"fork":false,"pushed_at":"2023-10-03T04:52:58.000Z","size":273,"stargazers_count":2,"open_issues_count":6,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2024-12-28T07:29:16.032Z","etag":null,"topics":["cucumber-jvm","extentreports","java8"],"latest_commit_sha":null,"homepage":"https://ghchirp.online/2114/","language":"Java","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/grasshopper7.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":null,"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}},"created_at":"2020-07-10T09:27:36.000Z","updated_at":"2024-09-18T17:02:37.000Z","dependencies_parsed_at":"2023-10-03T10:22:58.261Z","dependency_job_id":null,"html_url":"https://github.com/grasshopper7/extentreports-cucumberjson-plugin","commit_stats":null,"previous_names":[],"tags_count":28,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/grasshopper7%2Fextentreports-cucumberjson-plugin","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/grasshopper7%2Fextentreports-cucumberjson-plugin/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/grasshopper7%2Fextentreports-cucumberjson-plugin/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/grasshopper7%2Fextentreports-cucumberjson-plugin/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/grasshopper7","download_url":"https://codeload.github.com/grasshopper7/extentreports-cucumberjson-plugin/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":239571586,"owners_count":19661165,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","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":["cucumber-jvm","extentreports","java8"],"created_at":"2024-11-07T12:22:49.336Z","updated_at":"2025-10-16T22:52:02.101Z","avatar_url":"https://github.com/grasshopper7.png","language":"Java","funding_links":[],"categories":[],"sub_categories":[],"readme":"This deals with **generating Extent reports for Cucumber-JVM**, version 4.3 and above, by using a **Maven Plugin which parses the Cucumber JSON report**. For more details refer to this [article](https://ghchirp.site/2114/). Sample implementation can be found [here](https://github.com/grasshopper7/extentreports-cucumberjson-report).\n\nThe **plugin version 2.0.0** uses **ExtentReport version 5** which deprecates many reporters other than **Spark, Json and Klov**. This plugin also includes a **custom [Pdf reporter](https://github.com/grasshopper7/cucumber-pdf-report)**. A ported version of the HTML extent report is also generated. The Spark, Json, Pdf and Html reports are enabled by default. Use the below **configuration** for the plugin.\n\n\n```\n\u003cplugin\u003e\n\t\u003cgroupId\u003etech.grasshopper\u003c/groupId\u003e\n\t\u003cartifactId\u003eextentreports-cucumberjson-plugin\u003c/artifactId\u003e\n\t\u003cversion\u003e2.16.0\u003c/version\u003e\n\t\u003cexecutions\u003e\n\t\t\u003cexecution\u003e\n\t\t\t\u003cid\u003ereport\u003c/id\u003e\n\t\t\t\u003cphase\u003epost-integration-test\u003c/phase\u003e\n\t\t\t\u003cgoals\u003e\n\t\t\t\t\u003cgoal\u003eextentreport\u003c/goal\u003e\n\t\t\t\u003c/goals\u003e\n\t\t\u003c/execution\u003e\n\t\u003c/executions\u003e\n\t\u003cconfiguration\u003e\n\t\t\u003ccucumberJsonReportDirectory\u003e${project.build.directory}\u003c/cucumberJsonReportDirectory\u003e\n\t\t\u003cextentPropertiesDirectory\u003e${project.build.testResources[0].directory}\u003c/extentPropertiesDirectory\u003e\n\t\t\u003cdisplayAllHooks\u003efalse\u003c/displayAllHooks\u003e\n\t\t\u003cstrictCucumber6Behavior\u003etrue\u003c/strictCucumber6Behavior\u003e\n\t\u003c/configuration\u003e\n\u003c/plugin\u003e\n```\n\nTo use ExtentReports version 4 use the plugin version 1.6.0 in the POM. Refer to **Plugin Configuration** section in the [article](https://ghchirp.tech/2114/). \n\n\nThe Cucumber Json report is created with the below **setting in the Cucumber runner**. Refer to **Cucumber JSON Formatter Setup** section in the [article](https://ghchirp.site/2114/).\n```\n@CucumberOptions(plugin = { \"json:target/json-report/cucumber.json\"})\n```\n\n**Plugin Configuration** -\n| Property                        | Type      | Default | Description                                     |                       |\n| ----------------------------    |:---------:|:-------:|-------------------------------------------------|-----------------------|               \n| **cucumberJsonReportDirectory** | mandatory |         | directory path of the JSON report               |                       |\n| **extentPropertiesDirectory**   | optional  |         | directory path of the project extent.properties |                       |\n| **displayAllHooks**             | optional  | false   | flag for all hooks are to be displayed          |                       |\n| **strictCucumber6Behavior**     | optional  | true    | flag to set undefined step to failed            | Available after 2.0.0 |\n\nRefer to **Plugin Configuration** section in the [article](https://ghchirp.tech/2114/).\n\n**Report Settings** - The Spark, PDF, HTML and Json reporter are enabled by default. Refer to **ExtentReport Settings** section in the [article](https://ghchirp.site/2114/).\n\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fgrasshopper7%2Fextentreports-cucumberjson-plugin","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fgrasshopper7%2Fextentreports-cucumberjson-plugin","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fgrasshopper7%2Fextentreports-cucumberjson-plugin/lists"}