This is an automated email from the ASF dual-hosted git repository. ottlinger pushed a commit to branch fix/WHISKER-21 in repository https://gitbox.apache.org/repos/asf/creadur-whisker.git
commit b8852618f2eb1f816c5989b43c267d4dede231fc Author: P. Ottlinger <[email protected]> AuthorDate: Mon Jul 20 14:18:35 2026 +0200 WHISKER-21: Add argLine for code coverage results --- pom.xml | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/pom.xml b/pom.xml index 8d115e1..c928e44 100644 --- a/pom.xml +++ b/pom.xml @@ -375,6 +375,14 @@ </execution> </executions> </plugin> + <plugin> + <groupId>org.apache.maven.plugins</groupId> + <artifactId>maven-surefire-plugin</artifactId> + <configuration> + <!-- We need to append to the existing arguments in order for code coverage to work --> + <argLine>${argLine}</argLine> + </configuration> + </plugin> </plugins> </pluginManagement> <plugins>
