|
5 | 5 | <parent> |
6 | 6 | <groupId>org.springframework.boot</groupId> |
7 | 7 | <artifactId>spring-boot-starter-parent</artifactId> |
8 | | - <version>3.5.4</version> |
| 8 | + <version>4.0.2</version> |
9 | 9 | <relativePath /> <!-- lookup parent from repository --> |
10 | 10 | </parent> |
11 | 11 |
|
|
47 | 47 | <refresh-presigned-url.yaml.file> |
48 | 48 | ${project.basedir}/src/main/resources/swagger.api/refresh-presigned-url.yaml |
49 | 49 | </refresh-presigned-url.yaml.file> |
50 | | - <folio-spring-base.version>10.0.0-SNAPSHOT</folio-spring-base.version> |
| 50 | + <folio-spring-base.version>10.0.0-RC1</folio-spring-base.version> |
51 | 51 | <folio-service-tools.version>4.1.1</folio-service-tools.version> |
52 | 52 | <folio-spring-cql.version>9.0.0</folio-spring-cql.version> |
53 | 53 | <folio-module-descriptor-validator.version>1.0.0</folio-module-descriptor-validator.version> |
54 | 54 | <openapi-generator.version>6.2.1</openapi-generator.version> |
55 | 55 | <commons-collections4.version>4.5.0</commons-collections4.version> |
56 | | - <hypersistence-utils-hibernate-63.version>3.7.3</hypersistence-utils-hibernate-63.version> |
57 | 56 | <opencsv.version>5.11.2</opencsv.version> |
58 | 57 | <feign-jackson.version>12.1</feign-jackson.version> |
59 | 58 | <marc4j.version>2.9.2</marc4j.version> |
|
62 | 61 | <!-- Test properties--> |
63 | 62 | <junit-extensions.version>2.4.0</junit-extensions.version> |
64 | 63 | <spring-cloud-starter-bootstrap.version>4.2.0</spring-cloud-starter-bootstrap.version> |
65 | | - <wiremock.version>2.27.2</wiremock.version> |
| 64 | + <wiremock.version>3.13.0</wiremock.version> |
66 | 65 | <localstack.version>1.20.5</localstack.version> |
67 | 66 | <marc4j.version>2.9.1</marc4j.version> |
68 | | - <testcontainers.version>1.17.6</testcontainers.version> |
| 67 | + <testcontainers.version>2.0.3</testcontainers.version> |
| 68 | + <testcontainers.extensions.version>1.21.4</testcontainers.extensions.version> |
69 | 69 | <aws.sdk.version>2.40.2</aws.sdk.version> |
70 | 70 | <folio-s3-client.version>3.0.0-SNAPSHOT</folio-s3-client.version> |
71 | 71 | <hamcrest-all.version>1.3</hamcrest-all.version> |
|
126 | 126 | <groupId>org.springframework.batch</groupId> |
127 | 127 | <artifactId>spring-batch-integration</artifactId> |
128 | 128 | </dependency> |
129 | | - <dependency> |
130 | | - <groupId>org.springframework.kafka</groupId> |
131 | | - <artifactId>spring-kafka</artifactId> |
132 | | - </dependency> |
133 | 129 |
|
134 | 130 | <dependency> |
135 | 131 | <groupId>org.springframework.boot</groupId> |
|
142 | 138 | </exclusions> |
143 | 139 | </dependency> |
144 | 140 |
|
| 141 | + <dependency> |
| 142 | + <groupId>org.springframework.boot</groupId> |
| 143 | + <artifactId>spring-boot-starter-kafka</artifactId> |
| 144 | + </dependency> |
| 145 | + |
145 | 146 | <dependency> |
146 | 147 | <groupId>org.springframework.boot</groupId> |
147 | 148 | <artifactId>spring-boot-starter-cache</artifactId> |
|
189 | 190 | <version>3.11.1</version> |
190 | 191 | </dependency> |
191 | 192 |
|
192 | | - <dependency> |
193 | | - <groupId>io.hypersistence</groupId> |
194 | | - <artifactId>hypersistence-utils-hibernate-63</artifactId> |
195 | | - <version>${hypersistence-utils-hibernate-63.version}</version> |
196 | | - </dependency> |
197 | | - |
198 | 193 | <dependency> |
199 | 194 | <groupId>io.xlate</groupId> |
200 | 195 | <artifactId>staedi</artifactId> |
|
262 | 257 | <dependency> |
263 | 258 | <groupId>org.testcontainers</groupId> |
264 | 259 | <artifactId>junit-jupiter</artifactId> |
265 | | - <version>${testcontainers.version}</version> |
| 260 | + <version>${testcontainers.extensions.version}</version> |
266 | 261 | <scope>test</scope> |
267 | 262 | </dependency> |
268 | 263 |
|
269 | 264 | <dependency> |
270 | 265 | <groupId>org.testcontainers</groupId> |
271 | 266 | <artifactId>postgresql</artifactId> |
272 | | - <version>${testcontainers.version}</version> |
| 267 | + <version>${testcontainers.extensions.version}</version> |
273 | 268 | <scope>test</scope> |
274 | 269 | </dependency> |
275 | 270 |
|
|
279 | 274 | <version>2.7.1</version> |
280 | 275 | <scope>test</scope> |
281 | 276 | </dependency> |
282 | | - <dependency> |
283 | | - <groupId>org.springframework.cloud</groupId> |
284 | | - <artifactId>spring-cloud-starter-bootstrap</artifactId> |
285 | | - <version>${spring-cloud-starter-bootstrap.version}</version> |
286 | | - <scope>test</scope> |
287 | | - </dependency> |
288 | 277 | <dependency> |
289 | 278 | <groupId>org.springframework.boot</groupId> |
290 | 279 | <artifactId>spring-boot-starter-test</artifactId> |
291 | | - <version>3.4.0</version> |
292 | 280 | <scope>test</scope> |
293 | 281 | <exclusions> |
294 | 282 | <exclusion> |
|
345 | 333 | <scope>test</scope> |
346 | 334 | </dependency> |
347 | 335 | <dependency> |
348 | | - <groupId>com.github.tomakehurst</groupId> |
| 336 | + <groupId>org.wiremock</groupId> |
349 | 337 | <artifactId>wiremock-standalone</artifactId> |
350 | 338 | <version>${wiremock.version}</version> |
351 | 339 | <scope>test</scope> |
352 | 340 | </dependency> |
| 341 | + <dependency> |
| 342 | + <groupId>org.springframework.boot</groupId> |
| 343 | + <artifactId>spring-boot-starter-webmvc-test</artifactId> |
| 344 | + <scope>test</scope> |
| 345 | + </dependency> |
353 | 346 | </dependencies> |
354 | 347 |
|
355 | 348 | <build> |
|
0 commit comments