Upgrade to Testcontainers 2.0.

See spring-projects/spring-data-build#2688
This commit is contained in:
Mark Paluch 2025-10-28 08:59:43 +01:00
parent 828f588f3e
commit 2c49dc75de
No known key found for this signature in database
GPG Key ID: 55BC6374BAA9D973

11
pom.xml
View File

@ -27,7 +27,6 @@
<hoverfly>0.20.2</hoverfly> <hoverfly>0.20.2</hoverfly>
<log4j>2.25.1</log4j> <log4j>2.25.1</log4j>
<jsonassert>1.5.3</jsonassert> <jsonassert>1.5.3</jsonassert>
<testcontainers>1.21.3</testcontainers>
<wiremock>3.9.2</wiremock> <wiremock>3.9.2</wiremock>
<java-module-name>spring.data.elasticsearch</java-module-name> <java-module-name>spring.data.elasticsearch</java-module-name>
@ -324,10 +323,16 @@
<scope>test</scope> <scope>test</scope>
</dependency> </dependency>
<dependency>
<groupId>org.apache.commons</groupId>
<artifactId>commons-lang3</artifactId>
<version>3.19.0</version>
<scope>test</scope>
</dependency>
<dependency> <dependency>
<groupId>org.testcontainers</groupId> <groupId>org.testcontainers</groupId>
<artifactId>elasticsearch</artifactId> <artifactId>testcontainers-elasticsearch</artifactId>
<version>${testcontainers}</version>
<scope>test</scope> <scope>test</scope>
</dependency> </dependency>