File tree Expand file tree Collapse file tree 4 files changed +63
-5
lines changed Expand file tree Collapse file tree 4 files changed +63
-5
lines changed Original file line number Diff line number Diff line change 46
46
<dependency >
47
47
<groupId >org.junit.jupiter</groupId >
48
48
<artifactId >junit-jupiter-api</artifactId >
49
- <version >5.8 .2</version >
49
+ <version >5.10 .2</version >
50
50
</dependency >
51
51
<dependency >
52
52
<groupId >org.junit.jupiter</groupId >
53
53
<artifactId >junit-jupiter-params</artifactId >
54
- <version >5.8 .2</version >
54
+ <version >5.10 .2</version >
55
55
</dependency >
56
56
<dependency >
57
57
<groupId >org.junit.jupiter</groupId >
58
58
<artifactId >junit-jupiter-engine</artifactId >
59
- <version >5.8 .2</version >
59
+ <version >5.10 .2</version >
60
60
</dependency >
61
61
<dependency >
62
62
<groupId >org.junit.jupiter</groupId >
63
63
<artifactId >junit-jupiter</artifactId >
64
- <version >5.8 .2</version >
64
+ <version >5.10 .2</version >
65
65
</dependency >
66
66
</dependencies >
67
67
</dependencyManagement >
Original file line number Diff line number Diff line change 214
214
<artifactId >spring-boot-starter-test</artifactId >
215
215
<version >${springboot.version} </version >
216
216
</dependency >
217
+ <dependency >
218
+ <groupId >org.springframework.data</groupId >
219
+ <artifactId >spring-data-keyvalue</artifactId >
220
+ <version >${springboot.version} </version >
221
+ </dependency >
222
+ <dependency >
223
+ <groupId >org.springframework.data</groupId >
224
+ <artifactId >spring-data-commons</artifactId >
225
+ <version >${springboot.version} </version >
226
+ </dependency >
227
+ <dependency >
228
+ <groupId >org.springframework.boot</groupId >
229
+ <artifactId >spring-boot-testcontainers</artifactId >
230
+ <version >${springboot.version} </version >
231
+ </dependency >
217
232
</dependencies >
218
233
</dependencyManagement >
219
234
Load Diff This file was deleted.
Original file line number Diff line number Diff line change 33
33
<logback-core .version>1.5.16</logback-core .version>
34
34
<wiremock .version>3.9.1</wiremock .version>
35
35
<testcontainers-test .version>1.20.0</testcontainers-test .version>
36
+ <jacoco-maven-plugin .coverage-ratio>0%</jacoco-maven-plugin .coverage-ratio>
36
37
</properties >
37
38
38
39
<dependencyManagement >
234
235
235
236
<build >
236
237
<plugins >
238
+ <plugin >
239
+ <groupId >org.jacoco</groupId >
240
+ <artifactId >jacoco-maven-plugin</artifactId >
241
+ <version >${jacoco-maven-plugin.version} </version >
242
+ <executions >
243
+ <execution >
244
+ <id >default-prepare-agent</id >
245
+ <goals >
246
+ <goal >prepare-agent</goal >
247
+ </goals >
248
+ </execution >
249
+ <execution >
250
+ <id >report</id >
251
+ <phase >test</phase >
252
+ <goals >
253
+ <goal >report</goal >
254
+ </goals >
255
+ <configuration >
256
+ <outputDirectory >target/jacoco-report/</outputDirectory >
257
+ </configuration >
258
+ </execution >
259
+ <execution >
260
+ <id >check</id >
261
+ <goals >
262
+ <goal >check</goal >
263
+ </goals >
264
+ <configuration >
265
+ <rules >
266
+ <rule >
267
+ <element >BUNDLE</element >
268
+ <limits >
269
+ <limit >
270
+ <counter >LINE</counter >
271
+ <value >COVEREDRATIO</value >
272
+ <minimum >${jacoco-maven-plugin.coverage-ratio} </minimum >
273
+ </limit >
274
+ </limits >
275
+ </rule >
276
+ </rules >
277
+ </configuration >
278
+ </execution >
279
+ </executions >
280
+ </plugin >
237
281
<plugin >
238
282
<groupId >com.github.os72</groupId >
239
283
<artifactId >protoc-jar-maven-plugin</artifactId >
You can’t perform that action at this time.
0 commit comments