We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent de81617 commit 0bcb2d1Copy full SHA for 0bcb2d1
pom.xml
@@ -210,6 +210,27 @@
210
</configuration>
211
</plugin>
212
213
+ <!-- Code coverage for SonarCloud -->
214
+ <plugin>
215
+ <groupId>org.jacoco</groupId>
216
+ <artifactId>jacoco-maven-plugin</artifactId>
217
+ <version>0.8.7</version>
218
+ <executions>
219
+ <execution>
220
+ <goals>
221
+ <goal>prepare-agent</goal>
222
+ </goals>
223
+ </execution>
224
225
+ <id>report</id>
226
+ <phase>test</phase>
227
228
+ <goal>report</goal>
229
230
231
+ </executions>
232
+ </plugin>
233
+
234
<plugin>
235
<groupId>org.apache.maven.plugins</groupId>
236
<artifactId>maven-shade-plugin</artifactId>
0 commit comments