|
62 | 62 | <commons-lang.version>3.18.0</commons-lang.version> |
63 | 63 | <commons-cli.version>1.9.0</commons-cli.version> |
64 | 64 | <commons-io.version>2.14.0</commons-io.version> |
| 65 | + <commons-validator.version>1.7</commons-validator.version> |
65 | 66 | <zipkin.version>3.4.0</zipkin.version> |
66 | 67 | <microcks.version>0.3.1</microcks.version> |
| 68 | + <json-path.version>2.9.0</json-path.version> |
| 69 | + <retry4j.version>0.15.0</retry4j.version> |
| 70 | + <system-rules.version>1.19.0</system-rules.version> |
| 71 | + <system-stubs.version>2.1.1</system-stubs.version> |
| 72 | + <mockito-inline.version>4.2.0</mockito-inline.version> |
| 73 | + <junit-vintage-engine.version>5.7.0</junit-vintage-engine.version> |
| 74 | + <junit-platform-console.version>1.7.0</junit-platform-console.version> |
| 75 | + <reactor.version>3.5.12</reactor.version> |
| 76 | + <durabletask-client.version>1.5.10</durabletask-client.version> |
| 77 | + <testcontainers-redis.version>2.2.2</testcontainers-redis.version> |
| 78 | + <slf4j.version>2.0.9</slf4j.version> |
| 79 | + <mockito.version>3.11.2</mockito.version> |
| 80 | + <reactor-test.version>3.5.12</reactor-test.version> |
| 81 | + <opentelemetry-bom.version>2.1.0</opentelemetry-bom.version> |
| 82 | + <microcks-testcontainers.version>5.5.1</microcks-testcontainers.version> |
| 83 | + <kotlin.version>2.1.0</kotlin.version> |
| 84 | + <rest-assured.version>5.5.1</rest-assured.version> |
67 | 85 | </properties> |
68 | 86 |
|
69 | 87 | <distributionManagement> |
|
87 | 105 | <dependency> |
88 | 106 | <groupId>org.slf4j</groupId> |
89 | 107 | <artifactId>slf4j-api</artifactId> |
90 | | - <version>2.0.9</version> |
| 108 | + <version>${slf4j.version}</version> |
91 | 109 | </dependency> |
92 | 110 | <dependency> |
93 | 111 | <groupId>io.grpc</groupId> |
|
111 | 129 | <dependency> |
112 | 130 | <groupId>org.mockito</groupId> |
113 | 131 | <artifactId>mockito-core</artifactId> |
114 | | - <version>3.11.2</version> |
| 132 | + <version>${mockito.version}</version> |
115 | 133 | </dependency> |
116 | 134 | <dependency> |
117 | 135 | <groupId>io.projectreactor</groupId> |
118 | 136 | <artifactId>reactor-test</artifactId> |
119 | | - <version>3.5.12</version> |
| 137 | + <version>${reactor-test.version}</version> |
120 | 138 | <scope>test</scope> |
121 | 139 | </dependency> |
122 | 140 | <dependency> |
|
134 | 152 | <dependency> |
135 | 153 | <groupId>org.jetbrains.kotlin</groupId> |
136 | 154 | <artifactId>kotlin-stdlib</artifactId> |
137 | | - <version>2.1.0</version> |
| 155 | + <version>${kotlin.version}</version> |
138 | 156 | </dependency> |
139 | 157 | <dependency> |
140 | 158 | <groupId>org.yaml</groupId> |
|
201 | 219 | <dependency> |
202 | 220 | <groupId>io.rest-assured</groupId> |
203 | 221 | <artifactId>rest-assured</artifactId> |
204 | | - <version>5.5.1</version> |
| 222 | + <version>${rest-assured.version}</version> |
205 | 223 | </dependency> |
206 | 224 | <dependency> |
207 | 225 | <groupId>io.dapr.spring</groupId> |
|
371 | 389 | <artifactId>wiremock-standalone</artifactId> |
372 | 390 | <version>${wiremock.version}</version> |
373 | 391 | </dependency> |
| 392 | + <dependency> |
| 393 | + <groupId>commons-validator</groupId> |
| 394 | + <artifactId>commons-validator</artifactId> |
| 395 | + <version>${commons-validator.version}</version> |
| 396 | + </dependency> |
| 397 | + <dependency> |
| 398 | + <groupId>com.jayway.jsonpath</groupId> |
| 399 | + <artifactId>json-path</artifactId> |
| 400 | + <version>${json-path.version}</version> |
| 401 | + </dependency> |
| 402 | + <dependency> |
| 403 | + <groupId>com.evanlennick</groupId> |
| 404 | + <artifactId>retry4j</artifactId> |
| 405 | + <version>${retry4j.version}</version> |
| 406 | + </dependency> |
| 407 | + <dependency> |
| 408 | + <groupId>com.github.stefanbirkner</groupId> |
| 409 | + <artifactId>system-rules</artifactId> |
| 410 | + <version>${system-rules.version}</version> |
| 411 | + </dependency> |
| 412 | + <dependency> |
| 413 | + <groupId>uk.org.webcompere</groupId> |
| 414 | + <artifactId>system-stubs-jupiter</artifactId> |
| 415 | + <version>${system-stubs.version}</version> |
| 416 | + </dependency> |
| 417 | + <dependency> |
| 418 | + <groupId>org.mockito</groupId> |
| 419 | + <artifactId>mockito-inline</artifactId> |
| 420 | + <version>${mockito-inline.version}</version> |
| 421 | + </dependency> |
| 422 | + <dependency> |
| 423 | + <groupId>org.junit.vintage</groupId> |
| 424 | + <artifactId>junit-vintage-engine</artifactId> |
| 425 | + <version>${junit-vintage-engine.version}</version> |
| 426 | + </dependency> |
| 427 | + <dependency> |
| 428 | + <groupId>org.junit.platform</groupId> |
| 429 | + <artifactId>junit-platform-console-standalone</artifactId> |
| 430 | + <version>${junit-platform-console.version}</version> |
| 431 | + </dependency> |
| 432 | + <dependency> |
| 433 | + <groupId>com.fasterxml.jackson.core</groupId> |
| 434 | + <artifactId>jackson-databind</artifactId> |
| 435 | + <version>${jackson.version}</version> |
| 436 | + </dependency> |
| 437 | + <dependency> |
| 438 | + <groupId>io.projectreactor</groupId> |
| 439 | + <artifactId>reactor-core</artifactId> |
| 440 | + <version>${reactor.version}</version> |
| 441 | + </dependency> |
| 442 | + <dependency> |
| 443 | + <groupId>io.dapr</groupId> |
| 444 | + <artifactId>durabletask-client</artifactId> |
| 445 | + <version>${durabletask-client.version}</version> |
| 446 | + </dependency> |
| 447 | + <dependency> |
| 448 | + <groupId>com.redis</groupId> |
| 449 | + <artifactId>testcontainers-redis</artifactId> |
| 450 | + <version>${testcontainers-redis.version}</version> |
| 451 | + </dependency> |
374 | 452 | </dependencies> |
375 | 453 | </dependencyManagement> |
376 | 454 |
|
|
0 commit comments