Skip to content

Commit 961b669

Browse files
committed
add jacoco plugin
1 parent af0713c commit 961b669

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
@@ -168,6 +168,25 @@
168168
</rules>
169169
</configuration>
170170
</plugin>
171+
<plugin>
172+
<groupId>org.jacoco</groupId>
173+
<artifactId>jacoco-maven-plugin</artifactId>
174+
<version>0.8.8</version>
175+
<executions>
176+
<execution>
177+
<goals>
178+
<goal>prepare-agent</goal>
179+
</goals>
180+
</execution>
181+
<execution>
182+
<id>report</id>
183+
<phase>test</phase>
184+
<goals>
185+
<goal>report</goal>
186+
</goals>
187+
</execution>
188+
</executions>
189+
</plugin>
171190
</plugins>
172191
</pluginManagement>
173192
<plugins>

0 commit comments

Comments
 (0)