|
25 | 25 |
|
26 | 26 | <properties>
|
27 | 27 | <java.version>17</java.version>
|
| 28 | + <mockito.version>5.19.0</mockito.version> |
28 | 29 | <mockwebserver.version>5.1.0</mockwebserver.version>
|
29 | 30 | <okhttp3.version>4.10.0</okhttp3.version>
|
30 | 31 | <ontology-tag>v3.8.3</ontology-tag>
|
|
291 | 292 | <dependency>
|
292 | 293 | <groupId>org.mockito</groupId>
|
293 | 294 | <artifactId>mockito-core</artifactId>
|
294 |
| - <version>5.19.0</version> |
| 295 | + <version>${mockito.version}</version> |
295 | 296 | <scope>test</scope>
|
296 | 297 | </dependency>
|
297 | 298 |
|
|
396 | 397 | <artifactId>spring-boot-maven-plugin</artifactId>
|
397 | 398 | </plugin>
|
398 | 399 |
|
| 400 | + <plugin> |
| 401 | + <groupId>org.apache.maven.plugins</groupId> |
| 402 | + <artifactId>maven-compiler-plugin</artifactId> |
| 403 | + <version>3.11.0</version> |
| 404 | + <configuration> |
| 405 | + <annotationProcessorPaths> |
| 406 | + <path> |
| 407 | + <groupId>org.projectlombok</groupId> |
| 408 | + <artifactId>lombok</artifactId> |
| 409 | + <version>1.18.30</version> |
| 410 | + </path> |
| 411 | + </annotationProcessorPaths> |
| 412 | + </configuration> |
| 413 | + </plugin> |
| 414 | + |
399 | 415 | <plugin>
|
400 | 416 | <groupId>org.apache.maven.plugins</groupId>
|
401 | 417 | <artifactId>maven-release-plugin</artifactId>
|
|
421 | 437 | </executions>
|
422 | 438 | </plugin>
|
423 | 439 |
|
| 440 | + <plugin> |
| 441 | + <groupId>org.apache.maven.plugins</groupId> |
| 442 | + <artifactId>maven-surefire-plugin</artifactId> |
| 443 | + <version>3.5.4</version> <!-- pick an appropriate / latest version --> |
| 444 | + <configuration> |
| 445 | + <argLine> |
| 446 | + -javaagent:${settings.localRepository}/org/mockito/mockito-core/${mockito.version}/mockito-core-${mockito.version}.jar |
| 447 | + </argLine> |
| 448 | + </configuration> |
| 449 | + </plugin> |
| 450 | + |
424 | 451 | <plugin>
|
425 | 452 | <groupId>org.jacoco</groupId>
|
426 | 453 | <artifactId>jacoco-maven-plugin</artifactId>
|
|
0 commit comments