Skip to content

Latest commit

 

History

History
45 lines (41 loc) · 2.03 KB

File metadata and controls

45 lines (41 loc) · 2.03 KB

Maven Central

This a prettified version of maven-cucumber-reporting

Maven mojo for the cucumber-reporting - put this into your pom.xml and run mvn verify so cucumber reports will be generated in target/cucumber-html-reports

Read more about the project and configuration here:

Set maven plugin inside you Maven project

<build>
    <plugins>
        <plugin>
            <groupId>io.github.fslev</groupId>
            <artifactId>maven-cucumber-reporting-extended</artifactId>
            <version>(see latest version above)</version>
            <executions>
                <execution>
                    <id>execution</id>
                    <phase>verify</phase>
                    <goals>
                        <goal>generate</goal>
                    </goals>
                    <configuration>
                        <projectName>My project</projectName>
                        <skip>false</skip>
                        <outputDirectory>${project.build.directory}</outputDirectory>
                        <inputDirectory>${project.build.directory}/cucumber-report</inputDirectory>
                        <jsonFiles>
                            <param>**/*.json</param>
                        </jsonFiles>
                        <classificationFiles>
                            <classificationFile>cucumber-report/classification.properties
                            </classificationFile>
                        </classificationFiles>
                        <checkBuildResult>false</checkBuildResult>
                    </configuration>
                </execution>
            </executions>
        </plugin>
    </plugins>
</build>