This repository has been archived by the owner on Jan 14, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 167
Allure Maven Plugin
Ivan Krutov edited this page Aug 25, 2014
·
9 revisions
Allure Maven plugin allows to generate Allure report from prepared XML input data. This plugin doesn't know how to generate XML files - use a respective adapter for that. To use this plugin simply add it as dependency to reporting section of your pom.xml file:
<reporting>
<plugins>
<plugin>
<groupId>ru.yandex.qatools.allure</groupId>
<artifactId>allure-maven-plugin</artifactId>
<version>${allure.version}</version>
</plugin>
</plugins>
</reporting>
NOTE: Property allure.version should be defined in your pom.xml.
- allureResultsDirectory - Path to directory with Allure XML files. By default "${build.outputDirectory}/allure-results"
- outputDirectory - Path to generated report.
- aShot - WebDriver Screenshot utility. Take screenshots, crop, prettify, compare.
- HTML Elements - A Java framework that provides easy-to-use interaction with page elements in webpage tests.
- Properties - A Java library for populating beans with system environment properties in a simple and convenient way.
- Perspective - API and shell to orchestrate multiple clouds.