Background info:
- Maven version: 3.2.5
- Java version: 1.8
- Cucumber reporting version: 3.8.0
I have a multi-module maven java project. I have cucumber tests and the maven-cucumber-reporting plugin running and working for each module.
Question: I would like to generate one large report with all cucumber.json files from the child modules included after all child modules have built.
Can I:
- Run a maven plugin in the parent pom after all child modules have built and tested (with cucumber.json files created) to aggregate these reports into one large report
- Use a child module run at the end to do the aggregation of all child cucumber.json files and generate one big report.
Thanks in advance for any help!