Skip to content

Commit ca450d0

Browse files
authored
Fix artifact coordinates listed in docs (#11121)
1 parent 1f3b9be commit ca450d0

File tree

4 files changed

+8
-8
lines changed

4 files changed

+8
-8
lines changed

docs/index.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@ and then use dependencies without specifying a version:
8282
```xml
8383
<dependency>
8484
<groupId>org.testcontainers</groupId>
85-
<artifactId>mysql</artifactId>
85+
<artifactId>testcontainers-mysql</artifactId>
8686
<scope>test</scope>
8787
</dependency>
8888
```
@@ -92,7 +92,7 @@ Using Gradle 5.0 or higher, you can add the following to the `dependencies` sect
9292
=== "Gradle"
9393
```groovy
9494
implementation platform('org.testcontainers:testcontainers-bom:{{latest_version}}') //import bom
95-
testImplementation('org.testcontainers:mysql') //no version specified
95+
testImplementation('org.testcontainers:testcontainers-mysql') //no version specified
9696
```
9797

9898

docs/quickstart/junit_5_quickstart.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ First, add Testcontainers as a dependency as follows:
2525
```groovy
2626
testImplementation "org.junit.jupiter:junit-jupiter:5.8.1"
2727
testImplementation "org.testcontainers:testcontainers:{{latest_version}}"
28-
testImplementation "org.testcontainers:junit-jupiter:{{latest_version}}"
28+
testImplementation "org.testcontainers:testcontainers-junit-jupiter:{{latest_version}}"
2929
```
3030
=== "Maven"
3131
```xml
@@ -43,7 +43,7 @@ First, add Testcontainers as a dependency as follows:
4343
</dependency>
4444
<dependency>
4545
<groupId>org.testcontainers</groupId>
46-
<artifactId>junit-jupiter</artifactId>
46+
<artifactId>testcontainers-junit-jupiter</artifactId>
4747
<version>{{latest_version}}</version>
4848
<scope>test</scope>
4949
</dependency>

docs/quickstart/spock_quickstart.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,13 +23,13 @@ First, add Testcontainers as a dependency as follows:
2323

2424
=== "Gradle"
2525
```groovy
26-
testImplementation "org.testcontainers:spock:{{latest_version}}"
26+
testImplementation "org.testcontainers:testcontainers-spock:{{latest_version}}"
2727
```
2828
=== "Maven"
2929
```xml
3030
<dependency>
3131
<groupId>org.testcontainers</groupId>
32-
<artifactId>spock</artifactId>
32+
<artifactId>testcontainers-spock</artifactId>
3333
<version>{{latest_version}}</version>
3434
<scope>test</scope>
3535
</dependency>

docs/test_framework_integration/spock.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,13 +19,13 @@ Add the following dependency to your `pom.xml`/`build.gradle` file:
1919

2020
=== "Gradle"
2121
```groovy
22-
testImplementation "org.testcontainers:spock:{{latest_version}}"
22+
testImplementation "org.testcontainers:testcontainers-spock:{{latest_version}}"
2323
```
2424
=== "Maven"
2525
```xml
2626
<dependency>
2727
<groupId>org.testcontainers</groupId>
28-
<artifactId>spock</artifactId>
28+
<artifactId>testcontainers-spock</artifactId>
2929
<version>{{latest_version}}</version>
3030
<scope>test</scope>
3131
</dependency>

0 commit comments

Comments
 (0)