This is an automated email from the ASF dual-hosted git repository. rcordier pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/james-project.git
commit 3bb26a773288e813dd25610c87755d893fd5a63b Author: Tung Tran <[email protected]> AuthorDate: Mon Jul 10 09:26:53 2023 +0700 Maven - Execute build surefire report after test --- pom.xml | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/pom.xml b/pom.xml index d81d84a817..e19d6cfd13 100644 --- a/pom.xml +++ b/pom.xml @@ -3671,6 +3671,19 @@ </execution> </executions> </plugin> + <plugin> + <groupId>org.apache.maven.plugins</groupId> + <artifactId>maven-surefire-report-plugin</artifactId> + <executions> + <execution> + <id>build-surefire-report</id> + <goals> + <goal>report-only</goal> + </goals> + <phase>post-integration-test</phase> + </execution> + </executions> + </plugin> </plugins> <extensions> <extension> --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
