|
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 --> |
|
301 | 322 | <scope>test</scope> |
302 | 323 | </dependency> |
303 | 324 |
|
304 | | - <!-- Upgrade xbean to 4.5 to prevent incompatibilities due to ASM versions --> |
305 | | - <dependency> |
306 | | - <groupId>org.apache.xbean</groupId> |
307 | | - <artifactId>xbean-asm5-shaded</artifactId> |
308 | | - <version>4.5</version> |
309 | | - <scope>test</scope> |
310 | | - </dependency> |
311 | | - |
312 | | - <dependency> |
313 | | - <groupId>javax.servlet</groupId> |
314 | | - <artifactId>javax.servlet-api</artifactId> |
315 | | - <version>3.1.0</version> |
316 | | - <scope>test</scope> |
317 | | - </dependency> |
318 | | - |
319 | 325 | <dependency> |
320 | 326 | <groupId>org.mockito</groupId> |
321 | 327 | <artifactId>mockito-junit-jupiter</artifactId> |
322 | 328 | <version>${mockito}</version> |
323 | 329 | <scope>test</scope> |
324 | 330 | </dependency> |
325 | 331 |
|
326 | | - <dependency> |
327 | | - <groupId>org.apache.commons</groupId> |
328 | | - <artifactId>commons-lang3</artifactId> |
329 | | - <version>3.19.0</version> |
330 | | - <scope>test</scope> |
331 | | - </dependency> |
332 | | - |
333 | 332 | <dependency> |
334 | 333 | <groupId>org.testcontainers</groupId> |
335 | 334 | <artifactId>testcontainers-elasticsearch</artifactId> |
336 | 335 | <scope>test</scope> |
337 | 336 | </dependency> |
338 | 337 |
|
339 | | - <!--we need Murmur3Hash in a test, before 5.2 we had it from the old Elasticsearch dependency --> |
340 | | - <dependency> |
341 | | - <groupId>commons-codec</groupId> |
342 | | - <artifactId>commons-codec</artifactId> |
343 | | - <version>1.15</version> |
344 | | - <scope>test</scope> |
345 | | - </dependency> |
346 | | - |
347 | 338 | <dependency> |
348 | 339 | <groupId>com.tngtech.archunit</groupId> |
349 | 340 | <artifactId>archunit-junit5</artifactId> |
|
0 commit comments