We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 00b51c9 commit ed1f299Copy full SHA for ed1f299
pom.xml
@@ -190,6 +190,25 @@ https://stackoverflow.com/questions/37958104/maven-javadoc-no-source-files-for-p
190
</execution>
191
</executions>
192
</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
204
+ <id>report</id>
205
+ <phase>test</phase>
206
207
+ <goal>report</goal>
208
209
210
+ </executions>
211
+ </plugin>
212
</plugins>
213
</build>
214
0 commit comments