-
Notifications
You must be signed in to change notification settings - Fork 98
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Collect multiples JGiven JSON reports to a single HTML report. #387
Comments
Currently, I'm using a workaround of copying all json files by the maven-resources-plugin to a single place and generate a report out of them... |
@zambrovski - the technique you describe works for me in several projects. I event went to far to zip the JSON reports and upload them as a secondary artifact to the artifact repository. In a different build I download reports from multiple projects, extract them and run the plugin. |
Sounds like a useful extension. Could you make a concrete example of how you would expect this to look like in Maven? What would be the Maven-native way of doing this? |
I had the same problem with a multi-module Java 21 /Spring Boot 3 / Maven project.
|
Imagine, I have a multi-module maven project with several modules containing their JGiven tests.
Now in a CI I want to generate a single report out of them.
Currently, the Maven Plugin supports the sourceDirectory to read json files from one directory.
It would be nice, if this would be either an ANT matcher or a list of directories could be specified.
The text was updated successfully, but these errors were encountered: