Skip to content

Commit ed1f299

Browse files
committed
Try to enable code coverage reporting
1 parent 00b51c9 commit ed1f299

File tree

1 file changed

+19
-0
lines changed

1 file changed

+19
-0
lines changed

pom.xml

+19
Original file line numberDiff line numberDiff line change
@@ -190,6 +190,25 @@ https://stackoverflow.com/questions/37958104/maven-javadoc-no-source-files-for-p
190190
</execution>
191191
</executions>
192192
</plugin>
193+
<!-- 12-Oct-2023, tatu: JaCoCo for code coverage -->
194+
<plugin>
195+
<groupId>org.jacoco</groupId>
196+
<artifactId>jacoco-maven-plugin</artifactId>
197+
<executions>
198+
<execution>
199+
<goals>
200+
<goal>prepare-agent</goal>
201+
</goals>
202+
</execution>
203+
<execution>
204+
<id>report</id>
205+
<phase>test</phase>
206+
<goals>
207+
<goal>report</goal>
208+
</goals>
209+
</execution>
210+
</executions>
211+
</plugin>
193212
</plugins>
194213
</build>
195214

0 commit comments

Comments
 (0)