net.masterthought黄瓜报告插件正在执行黄瓜报告,因此多数民众赞成在其无法在给定路径处获取cumber.json文件的情况。
在pom.xml中,阶段是验证并且目标生成如下,我不确定生成黄瓜报告后执行插件的执行顺序。
<plugin>
<groupId>net.masterthought</groupId>
<artifactId>maven-cucumber-reporting</artifactId>
<version>(check version above)</version>
<executions>
<execution>
<id>execution</id>
<phase>verify</phase>
<goals>
<goal>generate</goal>
</goals>
<configuration>
<projectName>cucumber-jvm-example</projectName>
<outputDirectory>${project.build.directory}</outputDirectory>
<jsonFiles>
<!-- supports wildcard or name pattern -->
<param>**/*.json</param>
</jsonFiles>
<classificationFiles>
<!-- supports wildcard or name pattern -->
<param>sample.properties</param>
<param>other.properties</param>
</classificationFiles>
<parallelTesting>false</parallelTesting>
</configuration>
</execution>
</executions>
</plugin>
如果删除此插件,则黄瓜报告成功生成。我希望在生成黄瓜报告后执行此Maven报告。
任何潜在客户都会受到赞赏。