{"id":19041859,"url":"https://github.com/allure-framework/allure-maven","last_synced_at":"2025-05-16T13:06:11.403Z","repository":{"id":39642335,"uuid":"20645361","full_name":"allure-framework/allure-maven","owner":"allure-framework","description":"Maven plugin generating Allure report from test results","archived":false,"fork":false,"pushed_at":"2025-04-08T01:39:20.000Z","size":24562,"stargazers_count":102,"open_issues_count":16,"forks_count":55,"subscribers_count":17,"default_branch":"main","last_synced_at":"2025-05-08T01:27:11.138Z","etag":null,"topics":["allure","maven","maven-plugin","reporting"],"latest_commit_sha":null,"homepage":"","language":"Java","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"apache-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/allure-framework.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":".github/CONTRIBUTING.md","funding":null,"license":"LICENSE","code_of_conduct":"CODE_OF_CONDUCT.md","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}},"created_at":"2014-06-09T12:14:24.000Z","updated_at":"2025-04-17T12:53:08.000Z","dependencies_parsed_at":"2024-04-13T21:44:51.721Z","dependency_job_id":"a864bfb4-6726-4ae9-b2e7-3b65cdc358d2","html_url":"https://github.com/allure-framework/allure-maven","commit_stats":{"total_commits":234,"total_committers":27,"mean_commits":8.666666666666666,"dds":0.6794871794871795,"last_synced_commit":"40dc12a19b8e105eb94b2e78622175b26ea5e72c"},"previous_names":["allure-framework/allure-maven-plugin"],"tags_count":20,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/allure-framework%2Fallure-maven","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/allure-framework%2Fallure-maven/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/allure-framework%2Fallure-maven/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/allure-framework%2Fallure-maven/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/allure-framework","download_url":"https://codeload.github.com/allure-framework/allure-maven/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":254535827,"owners_count":22087399,"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":["allure","maven","maven-plugin","reporting"],"created_at":"2024-11-08T22:32:53.879Z","updated_at":"2025-05-16T13:06:11.343Z","avatar_url":"https://github.com/allure-framework.png","language":"Java","funding_links":[],"categories":[],"sub_categories":[],"readme":"[release]: https://github.com/allure-framework/allure-maven/releases/latest \"Release\"\n[release-badge]: https://img.shields.io/github/release/allure-framework/allure-maven.svg\n\n# Allure Maven Plugin\n\n[![Build](https://github.com/allure-framework/allure-maven/actions/workflows/build.yml/badge.svg)](https://github.com/allure-framework/allure-maven/actions/workflows/build.yml) [![release-badge][]][release]\n\n\u003e This plugin generates Allure Report from [allure-results](https://allurereport.org/docs/how-it-works/).\n\n[\u003cimg src=\"https://allurereport.org/public/img/allure-report.svg\" height=\"85px\" alt=\"Allure Report logo\" align=\"right\" /\u003e](https://allurereport.org \"Allure Report\")\n\n- Learn more about Allure Report at https://allurereport.org\n- 📚 [Documentation](https://allurereport.org/docs/) – discover official documentation for Allure Report\n- ❓ [Questions and Support](https://github.com/orgs/allure-framework/discussions/categories/questions-support) – get help from the team and community\n- 📢 [Official annoucements](https://github.com/orgs/allure-framework/discussions/categories/announcements) – be in touch with the latest updates\n- 💬 [General Discussion ](https://github.com/orgs/allure-framework/discussions/categories/general-discussion) – engage in casual conversations, share insights and ideas with the community\n\n---\n\n## Getting Started\n\n* Add following lines into your `pom.xml` build section:\n```\n\u003cplugin\u003e\n\t\u003cgroupId\u003eio.qameta.allure\u003c/groupId\u003e\n\t\u003cartifactId\u003eallure-maven\u003c/artifactId\u003e\n\t\u003cversion\u003e2.12.0\u003c/version\u003e\n\u003c/plugin\u003e\n```\n\n* `mvn clean test` - run your tests\n\nYou can generate a report using one of the following command:\n\n* `mvn allure:serve`\n\nReport will be generated into temp folder. Web server with results will start.\n\n* `mvn allure:report`\n\nReport will be generated tо directory: `target/site/allure-maven/index.html`\n\n## Configuration\n\nYou can configure Allure Report version by using `reportVersion` property:\n```\n\u003cplugin\u003e\n\t\u003cgroupId\u003eio.qameta.allure\u003c/groupId\u003e\n\t\u003cartifactId\u003eallure-maven\u003c/artifactId\u003e\n\t\u003cversion\u003e2.12.0\u003c/version\u003e\n\t\u003cconfiguration\u003e\n\t\t\u003creportVersion\u003e2.30.0\u003c/reportVersion\u003e\n\t\u003c/configuration\u003e\n\u003c/plugin\u003e\n```\n\nAdditional information can be found [on official website](https://allurereport.org/).\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fallure-framework%2Fallure-maven","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fallure-framework%2Fallure-maven","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fallure-framework%2Fallure-maven/lists"}