File tree Expand file tree Collapse file tree 1 file changed +36
-0
lines changed Expand file tree Collapse file tree 1 file changed +36
-0
lines changed Original file line number Diff line number Diff line change 14
14
15
15
<properties >
16
16
<gson .version>2.13.1</gson .version>
17
+ <jacoco .version>0.8.13</jacoco .version>
17
18
<jib-maven-plugin .version>3.4.5</jib-maven-plugin .version>
18
19
<junit-jupiter .version>5.13.1</junit-jupiter .version>
19
20
<kafka-streams .version>4.0.0</kafka-streams .version>
142
143
</execution >
143
144
</executions >
144
145
</plugin >
146
+
147
+ <plugin >
148
+ <groupId >org.jacoco</groupId >
149
+ <artifactId >jacoco-maven-plugin</artifactId >
150
+ <version >${jacoco.version} </version >
151
+ <executions >
152
+ <execution >
153
+ <id >jacoco-initialize</id >
154
+ <goals >
155
+ <goal >prepare-agent</goal >
156
+ </goals >
157
+ </execution >
158
+ <execution >
159
+ <id >report</id >
160
+ <goals >
161
+ <goal >report</goal >
162
+ </goals >
163
+ <phase >prepare-package</phase >
164
+ </execution >
165
+ <execution >
166
+ <id >post-unit-test</id >
167
+ <goals >
168
+ <goal >report</goal >
169
+ </goals >
170
+ <phase >test</phase >
171
+ <configuration >
172
+ <!-- Sets the path to the file which contains the execution data. -->
173
+ <dataFile >target/jacoco.exec</dataFile >
174
+ <!-- Sets the output directory for the code coverage report. -->
175
+ <outputDirectory >target/jacoco-ut</outputDirectory >
176
+ </configuration >
177
+ </execution >
178
+ </executions >
179
+ </plugin >
180
+
145
181
<plugin >
146
182
<groupId >com.google.cloud.tools</groupId >
147
183
<artifactId >jib-maven-plugin</artifactId >
You can’t perform that action at this time.
0 commit comments