|
91 | 91 | <url>https://github.com/spring-projects/spring-data-elasticsearch/issues</url> |
92 | 92 | </issueManagement> |
93 | 93 |
|
| 94 | + |
| 95 | + <dependencyManagement> |
| 96 | + <dependencies> |
| 97 | + |
| 98 | + <dependency> |
| 99 | + <groupId>org.apache.commons</groupId> |
| 100 | + <artifactId>commons-lang3</artifactId> |
| 101 | + <version>3.19.0</version> |
| 102 | + <scope>test</scope> |
| 103 | + </dependency> |
| 104 | + |
| 105 | + <dependency> |
| 106 | + <groupId>commons-io</groupId> |
| 107 | + <artifactId>commons-io</artifactId> |
| 108 | + <version>2.20.0</version> |
| 109 | + <scope>test</scope> |
| 110 | + </dependency> |
| 111 | + |
| 112 | + </dependencies> |
| 113 | + </dependencyManagement> |
| 114 | + |
94 | 115 | <dependencies> |
95 | 116 |
|
96 | 117 | <!-- Spring --> |
|
316 | 337 | <scope>test</scope> |
317 | 338 | </dependency> |
318 | 339 |
|
319 | | - <!-- Upgrade xbean to 4.5 to prevent incompatibilities due to ASM versions --> |
320 | | - <dependency> |
321 | | - <groupId>org.apache.xbean</groupId> |
322 | | - <artifactId>xbean-asm5-shaded</artifactId> |
323 | | - <version>4.5</version> |
324 | | - <scope>test</scope> |
325 | | - </dependency> |
326 | | - |
327 | | - <dependency> |
328 | | - <groupId>javax.servlet</groupId> |
329 | | - <artifactId>javax.servlet-api</artifactId> |
330 | | - <version>3.1.0</version> |
331 | | - <scope>test</scope> |
332 | | - </dependency> |
333 | | - |
334 | 340 | <dependency> |
335 | 341 | <groupId>org.mockito</groupId> |
336 | 342 | <artifactId>mockito-junit-jupiter</artifactId> |
337 | 343 | <version>${mockito}</version> |
338 | 344 | <scope>test</scope> |
339 | 345 | </dependency> |
340 | 346 |
|
341 | | - <dependency> |
342 | | - <groupId>org.apache.commons</groupId> |
343 | | - <artifactId>commons-lang3</artifactId> |
344 | | - <version>3.19.0</version> |
345 | | - <scope>test</scope> |
346 | | - </dependency> |
347 | | - |
348 | 347 | <dependency> |
349 | 348 | <groupId>org.testcontainers</groupId> |
350 | 349 | <artifactId>testcontainers-elasticsearch</artifactId> |
351 | 350 | <scope>test</scope> |
352 | 351 | </dependency> |
353 | 352 |
|
354 | | - <!--we need Murmur3Hash in a test, before 5.2 we had it from the old Elasticsearch dependency --> |
355 | | - <dependency> |
356 | | - <groupId>commons-codec</groupId> |
357 | | - <artifactId>commons-codec</artifactId> |
358 | | - <version>1.15</version> |
359 | | - <scope>test</scope> |
360 | | - </dependency> |
361 | | - |
362 | 353 | <dependency> |
363 | 354 | <groupId>com.tngtech.archunit</groupId> |
364 | 355 | <artifactId>archunit-junit5</artifactId> |
|
0 commit comments