Skip to content

Commit c8c9611

Browse files
committed
loadtest-controller: add coverage analysis
1 parent d1abfd4 commit c8c9611

1 file changed

Lines changed: 29 additions & 0 deletions

File tree

loadtest-controller/pom.xml

Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -159,6 +159,16 @@
159159
</dependencies>
160160

161161
<build>
162+
<pluginManagement>
163+
<plugins>
164+
<plugin>
165+
<groupId>org.jacoco</groupId>
166+
<artifactId>jacoco-maven-plugin</artifactId>
167+
<version>0.8.14</version>
168+
</plugin>
169+
</plugins>
170+
</pluginManagement>
171+
162172
<plugins>
163173
<plugin>
164174
<groupId>org.springframework.boot</groupId>
@@ -173,6 +183,25 @@
173183
<target>${java.version}</target>
174184
</configuration>
175185
</plugin>
186+
<plugin>
187+
<groupId>org.jacoco</groupId>
188+
<artifactId>jacoco-maven-plugin</artifactId>
189+
<executions>
190+
<execution>
191+
<goals>
192+
<goal>prepare-agent</goal>
193+
</goals>
194+
</execution>
195+
<execution>
196+
<id>report</id>
197+
<phase>test</phase>
198+
<goals>
199+
<goal>report</goal>
200+
</goals>
201+
</execution>
202+
</executions>
203+
</plugin>
204+
176205
</plugins>
177206
</build>
178207

0 commit comments

Comments
 (0)