Xceptance / neodymium-example

A pure Java test automation demo suite utilizing the Neodymium Library.
MIT License
10 stars 8 forks source link

update pom to fix error displaying in the allure report #24

Closed kqmpetenz closed 7 months ago

kqmpetenz commented 7 months ago

insert the following code snippet to pom

  <plugin>
    <groupId>io.qameta.allure</groupId>
    <artifactId>allure-maven</artifactId>
    <version>2.12.0</version>
    <configuration>
      <reportVersion>2.27.0</reportVersion>
      <resultsDirectory>${project.build.directory}/allure-results</resultsDirectory>
    </configuration>
  </plugin>
kqmpetenz commented 7 months ago

https://github.com/Xceptance/neodymium-example/pull/25