I am very new to this group. I am setting up a simple Maven, Spring Web project. I have worked through most of the issues but the Cucumber Rerpoting issuess have me stumped.
I am getting the following error when I run mvn "install" or "build":
Failed to execute goal net.masterthought:maven-cucumber-reporting:0.0.4:generate (execution) on project testcucumber: Error Found:
...
Caused by: java.io.FileNotFoundException: /testcucumber/target/cucumber.json (No such file or directory)Here are the snippet I am using in my pom file:
<plugin>
<groupId>net.masterthought</groupId>
<artifactId>maven-cucumber-reporting</artifactId>
<version>0.0.4</version>
<executions>
<execution>
<id>execution</id>
<phase>test</phase>
<goals>
<goal>generate</goal>
</goals>
<configuration>
<projectName>testcucumber</projectName>
<outputDirectory>${project.build.directory}/cucumber-html-reports</outputDirectory>
<cucumberOutput>${project.build.directory}/cucumber.json</cucumberOutput>
<enableFlashCharts>true</enableFlashCharts>
</configuration>
</execution>
</executions>
</plugin>
Any help, recommendations or suggestions would be great.
Russ