This is an automated email from the ASF dual-hosted git repository.
sjaranowski pushed a commit to branch fix-jenkins
in repository https://gitbox.apache.org/repos/asf/maven-surefire.git
The following commit(s) were added to refs/heads/fix-jenkins by this push:
new b5aee313e add JaCoCo reports
b5aee313e is described below
commit b5aee313e51d5c7a92f41490200d1bcb92cb5529
Author: Slawomir Jaranowski <[email protected]>
AuthorDate: Mon Mar 9 23:33:03 2026 +0100
add JaCoCo reports
---
pom.xml | 1 +
surefire-api/pom.xml | 6 ++++++
surefire-its/pom.xml | 7 +++++++
3 files changed, 14 insertions(+)
diff --git a/pom.xml b/pom.xml
index 6da51369e..2061b01af 100644
--- a/pom.xml
+++ b/pom.xml
@@ -369,6 +369,7 @@
<jmx>false</jmx>-->
<formats>
<format>HTML</format>
+ <format>XML</format>
</formats>
<includes>
<include>**/failsafe/*</include>
diff --git a/surefire-api/pom.xml b/surefire-api/pom.xml
index 9a7e9b993..e75383657 100644
--- a/surefire-api/pom.xml
+++ b/surefire-api/pom.xml
@@ -89,6 +89,12 @@
<goal>prepare-agent</goal>
</goals>
</execution>
+ <execution>
+ <id>report</id>
+ <goals>
+ <goal>report</goal>
+ </goals>
+ </execution>
</executions>
</plugin>
<plugin>
diff --git a/surefire-its/pom.xml b/surefire-its/pom.xml
index 0eced2519..8f7a49772 100644
--- a/surefire-its/pom.xml
+++ b/surefire-its/pom.xml
@@ -201,6 +201,13 @@
<destFile>${project.build.directory}/jacoco.exec</destFile>
</configuration>
</execution>
+ <execution>
+ <id>report</id>
+ <goals>
+ <goal>report</goal>
+ <goal>report-integration</goal>
+ </goals>
+ </execution>
</executions>
</plugin>
</plugins>