From 8ac8e05136a1b8004fd8548243127dfac68b925d Mon Sep 17 00:00:00 2001
From: Sagar <19862200+ox-sag@users.noreply.github.com>
Date: Wed, 15 Oct 2025 14:14:17 +0530
Subject: [PATCH] docs: update the document
---
docs/index.md | 4 ++--
docs/quickstart/junit_5_quickstart.md | 4 ++--
docs/quickstart/spock_quickstart.md | 4 ++--
docs/test_framework_integration/spock.md | 4 ++--
4 files changed, 8 insertions(+), 8 deletions(-)
diff --git a/docs/index.md b/docs/index.md
index a3b499dfa0c..40304dd22ed 100644
--- a/docs/index.md
+++ b/docs/index.md
@@ -82,7 +82,7 @@ and then use dependencies without specifying a version:
```xml
org.testcontainers
- mysql
+ testcontainers-mysql
test
```
@@ -92,7 +92,7 @@ Using Gradle 5.0 or higher, you can add the following to the `dependencies` sect
=== "Gradle"
```groovy
implementation platform('org.testcontainers:testcontainers-bom:{{latest_version}}') //import bom
- testImplementation('org.testcontainers:mysql') //no version specified
+ testImplementation('org.testcontainers:testcontainers-mysql') //no version specified
```
diff --git a/docs/quickstart/junit_5_quickstart.md b/docs/quickstart/junit_5_quickstart.md
index 3c126196845..effd17dd2d9 100644
--- a/docs/quickstart/junit_5_quickstart.md
+++ b/docs/quickstart/junit_5_quickstart.md
@@ -25,7 +25,7 @@ First, add Testcontainers as a dependency as follows:
```groovy
testImplementation "org.junit.jupiter:junit-jupiter:5.8.1"
testImplementation "org.testcontainers:testcontainers:{{latest_version}}"
- testImplementation "org.testcontainers:junit-jupiter:{{latest_version}}"
+ testImplementation "org.testcontainers:testcontainers-junit-jupiter:{{latest_version}}"
```
=== "Maven"
```xml
@@ -43,7 +43,7 @@ First, add Testcontainers as a dependency as follows:
org.testcontainers
- junit-jupiter
+ testcontainers-junit-jupiter
{{latest_version}}
test
diff --git a/docs/quickstart/spock_quickstart.md b/docs/quickstart/spock_quickstart.md
index 267954e99ee..c9c78bea5ea 100644
--- a/docs/quickstart/spock_quickstart.md
+++ b/docs/quickstart/spock_quickstart.md
@@ -23,13 +23,13 @@ First, add Testcontainers as a dependency as follows:
=== "Gradle"
```groovy
- testImplementation "org.testcontainers:spock:{{latest_version}}"
+ testImplementation "org.testcontainers:testcontainers-spock:{{latest_version}}"
```
=== "Maven"
```xml
org.testcontainers
- spock
+ testcontainers-spock
{{latest_version}}
test
diff --git a/docs/test_framework_integration/spock.md b/docs/test_framework_integration/spock.md
index b8c1d5b7eae..3d50e0399d2 100644
--- a/docs/test_framework_integration/spock.md
+++ b/docs/test_framework_integration/spock.md
@@ -19,13 +19,13 @@ Add the following dependency to your `pom.xml`/`build.gradle` file:
=== "Gradle"
```groovy
- testImplementation "org.testcontainers:spock:{{latest_version}}"
+ testImplementation "org.testcontainers:testcontainers-spock:{{latest_version}}"
```
=== "Maven"
```xml
org.testcontainers
- spock
+ testcontainers-spock
{{latest_version}}
test