Skip to content

Commit 906e5e5

Browse files
author
ALIOTTI Simon
committed
Add jacoco plugin
1 parent b1fd77a commit 906e5e5

1 file changed

Lines changed: 19 additions & 0 deletions

File tree

pom.xml

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -182,6 +182,25 @@
182182
</includes>
183183
</configuration>
184184
</plugin>
185+
<plugin>
186+
<groupId>org.jacoco</groupId>
187+
<artifactId>jacoco-maven-plugin</artifactId>
188+
<version>0.8.14</version>
189+
<executions>
190+
<execution>
191+
<goals>
192+
<goal>prepare-agent</goal>
193+
</goals>
194+
</execution>
195+
<execution>
196+
<id>report</id>
197+
<phase>verify</phase>
198+
<goals>
199+
<goal>report</goal>
200+
</goals>
201+
</execution>
202+
</executions>
203+
</plugin>
185204
</plugins>
186205
</build>
187206
</project>

0 commit comments

Comments
 (0)