This is an automated email from the ASF dual-hosted git repository. rishabhdaim pushed a commit to branch OAK-12296 in repository https://gitbox.apache.org/repos/asf/jackrabbit-oak.git
commit 3cef69f8b59119cfc97573ac028b0e8119c24d66 Author: rishabhdaim <[email protected]> AuthorDate: Sun Jul 5 13:03:18 2026 +0530 OAK-12296 : bump testcontainers version to 2.0.3 --- oak-it-osgi/pom.xml | 2 +- oak-parent/pom.xml | 2 +- oak-run-commons/pom.xml | 4 ++-- oak-run-elastic/pom.xml | 2 +- .../java/org/apache/jackrabbit/oak/index/IncrementalStoreTest.java | 2 +- oak-search-elastic/pom.xml | 4 ++-- oak-store-document/pom.xml | 4 ++-- 7 files changed, 10 insertions(+), 10 deletions(-) diff --git a/oak-it-osgi/pom.xml b/oak-it-osgi/pom.xml index 11a7092aeb..26a4020ae4 100644 --- a/oak-it-osgi/pom.xml +++ b/oak-it-osgi/pom.xml @@ -198,7 +198,7 @@ </dependency> <dependency> <groupId>org.testcontainers</groupId> - <artifactId>elasticsearch</artifactId> + <artifactId>testcontainers-elasticsearch</artifactId> <version>${testcontainers.version}</version> <scope>test</scope> </dependency> diff --git a/oak-parent/pom.xml b/oak-parent/pom.xml index 8924502f3d..c266b80cf3 100644 --- a/oak-parent/pom.xml +++ b/oak-parent/pom.xml @@ -65,7 +65,7 @@ <tika.version>1.28.5</tika.version> <derby.version>10.16.1.1</derby.version> <jackson.version>2.19.4</jackson.version> - <testcontainers.version>1.21.4</testcontainers.version> + <testcontainers.version>2.0.3</testcontainers.version> <pax-exam.version>4.14.0</pax-exam.version> <pax-url.version>2.6.17</pax-url.version> <groovy.version>3.0.25</groovy.version> diff --git a/oak-run-commons/pom.xml b/oak-run-commons/pom.xml index 6b1fabfa51..812bb46395 100644 --- a/oak-run-commons/pom.xml +++ b/oak-run-commons/pom.xml @@ -212,13 +212,13 @@ </dependency> <dependency> <groupId>org.testcontainers</groupId> - <artifactId>toxiproxy</artifactId> + <artifactId>testcontainers-toxiproxy</artifactId> <version>${testcontainers.version}</version> <scope>test</scope> </dependency> <dependency> <groupId>org.testcontainers</groupId> - <artifactId>mongodb</artifactId> + <artifactId>testcontainers-mongodb</artifactId> <version>${testcontainers.version}</version> <scope>test</scope> </dependency> diff --git a/oak-run-elastic/pom.xml b/oak-run-elastic/pom.xml index f5db86d1df..c874828178 100644 --- a/oak-run-elastic/pom.xml +++ b/oak-run-elastic/pom.xml @@ -256,7 +256,7 @@ </dependency> <dependency> <groupId>org.testcontainers</groupId> - <artifactId>elasticsearch</artifactId> + <artifactId>testcontainers-elasticsearch</artifactId> <version>${testcontainers.version}</version> <scope>test</scope> </dependency> diff --git a/oak-run/src/test/java/org/apache/jackrabbit/oak/index/IncrementalStoreTest.java b/oak-run/src/test/java/org/apache/jackrabbit/oak/index/IncrementalStoreTest.java index fce8528906..0048281d02 100644 --- a/oak-run/src/test/java/org/apache/jackrabbit/oak/index/IncrementalStoreTest.java +++ b/oak-run/src/test/java/org/apache/jackrabbit/oak/index/IncrementalStoreTest.java @@ -23,6 +23,7 @@ import com.fasterxml.jackson.databind.ObjectMapper; import com.mongodb.ConnectionString; import com.mongodb.client.MongoDatabase; import org.apache.commons.collections4.set.ListOrderedSet; +import org.apache.commons.io.FileUtils; import org.apache.commons.io.IOUtils; import org.apache.jackrabbit.oak.api.CommitFailedException; import org.apache.jackrabbit.oak.commons.Compression; @@ -71,7 +72,6 @@ import org.junit.Rule; import org.junit.Test; import org.junit.contrib.java.lang.system.RestoreSystemProperties; import org.junit.rules.TemporaryFolder; -import org.testcontainers.shaded.org.apache.commons.io.FileUtils; import java.io.BufferedReader; import java.io.File; diff --git a/oak-search-elastic/pom.xml b/oak-search-elastic/pom.xml index 9aa1ac1018..2bb76d77be 100644 --- a/oak-search-elastic/pom.xml +++ b/oak-search-elastic/pom.xml @@ -278,13 +278,13 @@ </dependency> <dependency> <groupId>org.testcontainers</groupId> - <artifactId>elasticsearch</artifactId> + <artifactId>testcontainers-elasticsearch</artifactId> <version>${testcontainers.version}</version> <scope>test</scope> </dependency> <dependency> <groupId>org.testcontainers</groupId> - <artifactId>toxiproxy</artifactId> + <artifactId>testcontainers-toxiproxy</artifactId> <version>${testcontainers.version}</version> <scope>test</scope> </dependency> diff --git a/oak-store-document/pom.xml b/oak-store-document/pom.xml index 951ed303be..ba35496626 100644 --- a/oak-store-document/pom.xml +++ b/oak-store-document/pom.xml @@ -348,13 +348,13 @@ </dependency> <dependency> <groupId>org.testcontainers</groupId> - <artifactId>toxiproxy</artifactId> + <artifactId>testcontainers-toxiproxy</artifactId> <version>${testcontainers.version}</version> <scope>test</scope> </dependency> <dependency> <groupId>org.testcontainers</groupId> - <artifactId>mongodb</artifactId> + <artifactId>testcontainers-mongodb</artifactId> <version>${testcontainers.version}</version> <scope>test</scope> </dependency>
