Skip to content

Commit e70fdb7

Browse files
committed
add jacoco
1 parent 9ba67b5 commit e70fdb7

File tree

1 file changed

+19
-0
lines changed

1 file changed

+19
-0
lines changed

pom.xml

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -419,6 +419,25 @@
419419
</execution>
420420
</executions>
421421
</plugin>
422+
<plugin>
423+
<groupId>org.jacoco</groupId>
424+
<artifactId>jacoco-maven-plugin</artifactId>
425+
<version>0.8.11</version>
426+
<executions>
427+
<execution>
428+
<goals>
429+
<goal>prepare-agent</goal>
430+
</goals>
431+
</execution>
432+
<execution>
433+
<id>report</id>
434+
<phase>prepare-package</phase>
435+
<goals>
436+
<goal>report</goal>
437+
</goals>
438+
</execution>
439+
</executions>
440+
</plugin>
422441
</plugins>
423442
</build>
424443

0 commit comments

Comments
 (0)