Awesome
Allure Maven Plugin
This plugin generates Allure Report from allure-results.
- Learn more about Allure Report at https://allurereport.org
- ๐ Documentation โ discover official documentation for Allure Report
- โ Questions and Support โ get help from the team and community
- ๐ข Official annoucements โ be in touch with the latest updates
- ๐ฌ General Discussion โ engage in casual conversations, share insights and ideas with the community
Getting Started
- Add following lines into your
pom.xml
build section:
<plugin>
<groupId>io.qameta.allure</groupId>
<artifactId>allure-maven</artifactId>
<version>2.12.0</version>
</plugin>
mvn clean test
- run your tests
You can generate a report using one of the following command:
mvn allure:serve
Report will be generated into temp folder. Web server with results will start.
mvn allure:report
Report will be generated tะพ directory: target/site/allure-maven/index.html
Configuration
You can configure Allure Report version by using reportVersion
property:
<plugin>
<groupId>io.qameta.allure</groupId>
<artifactId>allure-maven</artifactId>
<version>2.12.0</version>
<configuration>
<reportVersion>2.30.0</reportVersion>
</configuration>
</plugin>
Additional information can be found on official website.