|
18 | 18 | <properties> |
19 | 19 | <java.version>21</java.version> |
20 | 20 | <kotlin.version>2.1.0</kotlin.version> |
| 21 | + <kotest.version>5.9.1</kotest.version> |
| 22 | + <mockk.version>1.13.13</mockk.version> |
| 23 | + <springmockk.version>4.0.2</springmockk.version> |
21 | 24 | </properties> |
22 | 25 |
|
23 | 26 | <dependencies> |
|
44 | 47 | </dependency> |
45 | 48 | <dependency> |
46 | 49 | <groupId>org.jetbrains.kotlin</groupId> |
47 | | - <artifactId>kotlin-stdlib-jdk8</artifactId> |
| 50 | + <artifactId>kotlin-stdlib</artifactId> |
48 | 51 | </dependency> |
49 | 52 | <dependency> |
50 | 53 | <groupId>org.jetbrains.kotlinx</groupId> |
|
55 | 58 | <groupId>org.springframework.boot</groupId> |
56 | 59 | <artifactId>spring-boot-starter-test</artifactId> |
57 | 60 | <scope>test</scope> |
| 61 | + <exclusions> |
| 62 | + <exclusion> |
| 63 | + <groupId>org.mockito</groupId> |
| 64 | + <artifactId>mockito-core</artifactId> |
| 65 | + </exclusion> |
| 66 | + <exclusion> |
| 67 | + <groupId>org.mockito</groupId> |
| 68 | + <artifactId>mockito-junit-jupiter</artifactId> |
| 69 | + </exclusion> |
| 70 | + </exclusions> |
58 | 71 | </dependency> |
59 | 72 | <dependency> |
60 | 73 | <groupId>io.projectreactor</groupId> |
61 | 74 | <artifactId>reactor-test</artifactId> |
62 | 75 | <scope>test</scope> |
63 | 76 | </dependency> |
| 77 | + <dependency> |
| 78 | + <groupId>org.jetbrains.kotlinx</groupId> |
| 79 | + <artifactId>kotlinx-coroutines-test</artifactId> |
| 80 | + <scope>test</scope> |
| 81 | + </dependency> |
| 82 | + <dependency> |
| 83 | + <groupId>io.kotest</groupId> |
| 84 | + <artifactId>kotest-assertions-core-jvm</artifactId> |
| 85 | + <version>${kotest.version}</version> |
| 86 | + <scope>test</scope> |
| 87 | + </dependency> |
| 88 | + <dependency> |
| 89 | + <groupId>io.mockk</groupId> |
| 90 | + <artifactId>mockk-jvm</artifactId> |
| 91 | + <version>${mockk.version}</version> |
| 92 | + <scope>test</scope> |
| 93 | + </dependency> |
| 94 | + <dependency> |
| 95 | + <groupId>com.ninja-squad</groupId> |
| 96 | + <artifactId>springmockk</artifactId> |
| 97 | + <version>${springmockk.version}</version> |
| 98 | + </dependency> |
64 | 99 |
|
| 100 | + <dependency> |
| 101 | + <groupId>org.springframework.boot</groupId> |
| 102 | + <artifactId>spring-boot-testcontainers</artifactId> |
| 103 | + <scope>test</scope> |
| 104 | + </dependency> |
| 105 | + |
| 106 | + <dependency> |
| 107 | + <groupId>org.testcontainers</groupId> |
| 108 | + <artifactId>mongodb</artifactId> |
| 109 | + <scope>test</scope> |
| 110 | + </dependency> |
| 111 | + <dependency> |
| 112 | + <groupId>org.testcontainers</groupId> |
| 113 | + <artifactId>junit-jupiter</artifactId> |
| 114 | + <scope>test</scope> |
| 115 | + </dependency> |
65 | 116 | </dependencies> |
66 | 117 |
|
67 | 118 | <build> |
|
0 commit comments