yihua commented on code in PR #11073:
URL: https://github.com/apache/hudi/pull/11073#discussion_r1578613938
##########
pom.xml:
##########
@@ -2040,6 +2040,27 @@
</execution>
</executions>
</plugin>
+ <plugin>
+ <groupId>org.jacoco</groupId>
+ <artifactId>jacoco-maven-plugin</artifactId>
+ <executions>
+ <execution>
+ <goals>
+ <goal>prepare-agent</goal>
+ </goals>
+ </execution>
+ <execution>
Review Comment:
Can we try adding `report-aggregate` goal somewhere to report the coverage
across modules? Right now it does not seem like the report is aggregated
across modules.
```
<execution>
<id>report</id>
<phase>prepare-package</phase>
<goals>
<goal>report-aggregate</goal>
</goals>
</execution>
```
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]