Skip to content

Commit 58e981c

Browse files
Update spring boot 4 - build kotlin-service
1 parent 7b47b45 commit 58e981c

File tree

1 file changed

+24
-15
lines changed

1 file changed

+24
-15
lines changed

kotlin-service/pom.xml

Lines changed: 24 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -157,29 +157,38 @@
157157
</dependency>
158158

159159
<dependency>
160-
<groupId>de.flapdoodle.embed</groupId>
161-
<artifactId>de.flapdoodle.embed.mongo.spring31x</artifactId>
162-
<version>4.9.3</version>
160+
<groupId>org.springframework.boot</groupId>
161+
<artifactId>spring-boot-testcontainers</artifactId>
163162
<scope>test</scope>
164163
</dependency>
165-
166164
<dependency>
167-
<groupId>org.mockito</groupId>
168-
<artifactId>mockito-junit-jupiter</artifactId>
169-
<version>2.23.4</version>
165+
<groupId>org.testcontainers</groupId>
166+
<artifactId>testcontainers-junit-jupiter</artifactId>
170167
<scope>test</scope>
171168
</dependency>
172-
173169
<dependency>
174-
<groupId>org.springframework.security</groupId>
175-
<artifactId>spring-security-test</artifactId>
170+
<groupId>org.testcontainers</groupId>
171+
<artifactId>testcontainers-mongodb</artifactId>
172+
<scope>test</scope>
173+
</dependency>
174+
<dependency>
175+
<groupId>org.springframework.boot</groupId>
176+
<artifactId>spring-boot-starter-data-mongodb-test</artifactId>
176177
<scope>test</scope>
177178
</dependency>
178-
179179
<dependency>
180-
<groupId>org.mockito.kotlin</groupId>
181-
<artifactId>mockito-kotlin</artifactId>
182-
<version>4.1.0</version>
180+
<groupId>org.springframework.boot</groupId>
181+
<artifactId>spring-boot-starter-security-test</artifactId>
182+
<scope>test</scope>
183+
</dependency>
184+
<dependency>
185+
<groupId>org.springframework.boot</groupId>
186+
<artifactId>spring-boot-starter-webmvc-test</artifactId>
187+
<scope>test</scope>
188+
</dependency>
189+
<dependency>
190+
<groupId>org.jetbrains.kotlin</groupId>
191+
<artifactId>kotlin-test-junit5</artifactId>
183192
<scope>test</scope>
184193
</dependency>
185194
</dependencies>
@@ -222,7 +231,7 @@
222231
<annotationProcessorPath>
223232
<groupId>com.querydsl</groupId>
224233
<artifactId>querydsl-apt</artifactId>
225-
<version>5.0.0</version>
234+
<version>5.1.0</version>
226235
</annotationProcessorPath>
227236
<annotationProcessorPath>
228237
<groupId>org.mapstruct</groupId>

0 commit comments

Comments
 (0)