Hi,
Sorry, but this documentation is all about testrunner.bat (or.sh) and what I'm trying to do is to make my pom.xml exporting Allure report automatically to a specific destination, couldn't find any similar example.
Here is my pom.xml that export reports as pdf and txt to a specific dir:
<project xmlns="http://maven.apache.org/POM/4.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>com.solife.rest.autotest</groupId>
<artifactId>soapui-maven2-plugin</artifactId>
<packaging>jar</packaging>
<version>1.0-SNAPSHOT</version>
<name>Solife REST WS automatic tests</name>
<url>http://maven.apache.org</url>
<pluginRepositories>
<pluginRepository>
<id>SmartBearPluginRepository</id>
<url>http://www.soapui.org/repository/maven2/</url>
</pluginRepository>
</pluginRepositories>
<properties>
<!-- common properties-->
<reportsPath>Reports</reportsPath>
<readyApiPath>C:\Program Files\SmartBear\ReadyAPI-2.7.0\bin</readyApiPath>
<projectProperties>C:/ws-automatic-test/ws-automatic-test/REST/env.properties</projectProperties>
<!-- thirdparty REST API-->
<TpProjectPath>PROJECT-REST-WS-Thirdparty-readyapi-project</TpProjectPath>
<TpOutputPath>${reportsPath}/${project.version} -test reports/TP-Reports/</TpOutputPath>
</properties>
<build>
<plugins>
<plugin>
<groupId>com.smartbear</groupId>
<artifactId>ready-api-maven-plugin</artifactId>
<version>2.7.0</version>
<dependencies>
</dependencies>
<executions>
<execution>
<id>thirdParty</id>
<phase>test</phase>
<goals>
<goal>test</goal>
</goals>
<configuration>
<reportFormat>PDF</reportFormat>
<reportType>Project Report</reportType>
<reportName>Project Report</reportName>
<outputFolder>${TpOutputPath}</outputFolder>
<reports>${TpOutputPath}</reports>
<projectProperties>
<value>ENV=${projectProperties}</value>
</projectProperties>
<projectFile>${TpProjectPath}</projectFile>
<readyApiProperties>
<property>
<name>soapui.home</name>
<value>${readyApiPath}</value>
</property>
</readyApiProperties>
<testFailIgnore>true</testFailIgnore>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
</project>