|
31 | 31 | <spotless.version>3.4.0</spotless.version> |
32 | 32 | <swagger.version>2.2.47</swagger.version> |
33 | 33 | <testcontainers.version>1.21.4</testcontainers.version> |
| 34 | + <mockito.version>5.17.0</mockito.version> |
34 | 35 | </properties> |
35 | 36 |
|
36 | 37 | <dependencyManagement> |
|
46 | 47 | </dependencyManagement> |
47 | 48 |
|
48 | 49 | <dependencies> |
| 50 | + <dependency> |
| 51 | + <groupId>org.springframework.boot</groupId> |
| 52 | + <artifactId>spring-boot-starter-thymeleaf</artifactId> |
| 53 | + <scope>compile</scope> |
| 54 | + </dependency> |
| 55 | + <dependency> |
| 56 | + <groupId>com.github.ben-manes.caffeine</groupId> |
| 57 | + <artifactId>caffeine</artifactId> |
| 58 | + <scope>compile</scope> |
| 59 | + </dependency> |
| 60 | + <dependency> |
| 61 | + <groupId>org.springframework.boot</groupId> |
| 62 | + <artifactId>spring-boot-starter-cache</artifactId> |
| 63 | + <scope>compile</scope> |
| 64 | + </dependency> |
49 | 65 | <dependency> |
50 | 66 | <groupId>org.liquibase</groupId> |
51 | 67 | <artifactId>liquibase-core</artifactId> |
|
162 | 178 | </exclusion> |
163 | 179 | </exclusions> |
164 | 180 | </dependency> |
165 | | - <!-- Email Template --> |
166 | | - <dependency> |
167 | | - <groupId>org.thymeleaf</groupId> |
168 | | - <artifactId>thymeleaf-spring6</artifactId> |
169 | | - </dependency> |
170 | 181 | <!-- Apache Fineract Libraries --> |
171 | 182 | <dependency> |
172 | 183 | <groupId>org.apache.fineract</groupId> |
|
493 | 504 | <groupId>org.apache.maven.plugins</groupId> |
494 | 505 | <artifactId>maven-surefire-plugin</artifactId> |
495 | 506 | <configuration> |
| 507 | + <argLine>@{argLine} -javaagent:${settings.localRepository}/org/mockito/mockito-core/${mockito.version}/mockito-core-${mockito.version}.jar -Xshare:off</argLine> |
496 | 508 | <includes> |
497 | 509 | <include>**/*Test.java</include> |
498 | 510 | </includes> |
|
507 | 519 | <groupId>org.apache.maven.plugins</groupId> |
508 | 520 | <artifactId>maven-failsafe-plugin</artifactId> |
509 | 521 | <configuration> |
| 522 | + <argLine>@{argLine} -javaagent:${settings.localRepository}/org/mockito/mockito-core/${mockito.version}/mockito-core-${mockito.version}.jar -Xshare:off</argLine> |
510 | 523 | <includes> |
511 | 524 | <include>**/*IntegrationTest.java</include> |
512 | 525 | </includes> |
513 | 526 | <systemPropertyVariables> |
514 | 527 | <spring.profiles.active>integration-test</spring.profiles.active> |
515 | 528 | </systemPropertyVariables> |
516 | | - <destFile>${project.build.directory}/jacoco-it.exec</destFile> |
517 | 529 | </configuration> |
518 | 530 | <executions> |
519 | 531 | <execution> |
|
0 commit comments