Skip to content

Commit eb8c85d

Browse files
committed
Add jacoco
1 parent 43e3d4e commit eb8c85d

File tree

1 file changed

+18
-0
lines changed

1 file changed

+18
-0
lines changed

pom.xml

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -81,6 +81,24 @@
8181
</excludes>
8282
</configuration>
8383
</plugin>
84+
<plugin>
85+
<groupId>org.jacoco</groupId>
86+
<artifactId>jacoco-maven-plugin</artifactId>
87+
<executions>
88+
<execution>
89+
<goals>
90+
<goal>prepare-agent</goal>
91+
</goals>
92+
</execution>
93+
<execution>
94+
<id>report</id>
95+
<phase>prepare-package</phase>
96+
<goals>
97+
<goal>report</goal>
98+
</goals>
99+
</execution>
100+
</executions>
101+
</plugin>
84102
</plugins>
85103
</build>
86104

0 commit comments

Comments
 (0)