Skip to content

Commit a26d58f

Browse files
authored
Add testcontainers prefix to modules (#10591)
1 parent 5bd0b6d commit a26d58f

File tree

40 files changed

+80
-80
lines changed

40 files changed

+80
-80
lines changed

docs/examples/junit4/generic/build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@ description = "Examples for docs"
33
dependencies {
44
testImplementation "junit:junit:4.13.2"
55
testImplementation project(":testcontainers")
6-
testImplementation project(":selenium")
7-
testImplementation project(":mysql")
6+
testImplementation project(":testcontainers-selenium")
7+
testImplementation project(":testcontainers-mysql")
88

99
testRuntimeOnly 'mysql:mysql-connector-java:8.0.33'
1010
testImplementation "org.seleniumhq.selenium:selenium-api:4.34.0"

docs/examples/junit5/redis/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ dependencies {
88
testRuntimeOnly 'org.junit.jupiter:junit-jupiter-engine:5.13.4'
99
testRuntimeOnly 'org.junit.platform:junit-platform-launcher:1.10.3'
1010
testImplementation project(":testcontainers")
11-
testImplementation project(":junit-jupiter")
11+
testImplementation project(":testcontainers-junit-jupiter")
1212
testImplementation 'org.assertj:assertj-core:3.27.3'
1313
}
1414

docs/examples/spock/redis/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ plugins {
66
dependencies {
77
api "io.lettuce:lettuce-core:6.7.1.RELEASE"
88
testImplementation 'org.spockframework:spock-core:2.3-groovy-4.0'
9-
testImplementation project(":spock")
9+
testImplementation project(":testcontainers-spock")
1010
testImplementation 'ch.qos.logback:logback-classic:1.3.15'
1111
}
1212

examples/cucumber/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ dependencies {
1717
testImplementation platform('io.cucumber:cucumber-bom:7.27.0')
1818
testImplementation 'io.cucumber:cucumber-java'
1919
testImplementation 'io.cucumber:cucumber-junit-platform-engine'
20-
testImplementation 'org.testcontainers:selenium'
20+
testImplementation 'org.testcontainers:testcontainers-selenium'
2121
testImplementation 'org.assertj:assertj-core:3.27.3'
2222
testRuntimeOnly 'org.junit.platform:junit-platform-launcher:1.10.3'
2323
}

examples/immudb/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ repositories {
99
dependencies {
1010
implementation 'io.codenotary:immudb4j:1.0.1'
1111
testImplementation 'org.testcontainers:testcontainers'
12-
testImplementation 'org.testcontainers:junit-jupiter'
12+
testImplementation 'org.testcontainers:testcontainers-junit-jupiter'
1313
testImplementation 'org.assertj:assertj-core:3.27.3'
1414
testImplementation 'com.google.guava:guava:23.0'
1515
testImplementation 'ch.qos.logback:logback-classic:1.3.15'

examples/kafka-cluster/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ repositories {
99
dependencies {
1010
testCompileOnly "org.projectlombok:lombok:1.18.38"
1111
testAnnotationProcessor "org.projectlombok:lombok:1.18.38"
12-
testImplementation 'org.testcontainers:kafka'
12+
testImplementation 'org.testcontainers:testcontainers-kafka'
1313
testImplementation 'org.apache.kafka:kafka-clients:4.0.0'
1414
testImplementation 'org.assertj:assertj-core:3.27.3'
1515
testImplementation 'com.google.guava:guava:23.0'

examples/neo4j-container/build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,8 @@ repositories {
99
dependencies {
1010
testImplementation 'org.assertj:assertj-core:3.27.3'
1111
testImplementation 'org.neo4j.driver:neo4j-java-driver:4.4.20'
12-
testImplementation 'org.testcontainers:neo4j'
13-
testImplementation 'org.testcontainers:junit-jupiter'
12+
testImplementation 'org.testcontainers:testcontainers-neo4j'
13+
testImplementation 'org.testcontainers:testcontainers-junit-jupiter'
1414
testImplementation 'org.junit.jupiter:junit-jupiter:5.13.4'
1515
testRuntimeOnly 'org.junit.platform:junit-platform-launcher:1.11.0'
1616
}

examples/ollama-hugging-face/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ repositories {
77
}
88

99
dependencies {
10-
testImplementation 'org.testcontainers:ollama'
10+
testImplementation 'org.testcontainers:testcontainers-ollama'
1111
testImplementation 'org.assertj:assertj-core:3.27.3'
1212
testImplementation 'ch.qos.logback:logback-classic:1.3.15'
1313
testImplementation 'org.junit.jupiter:junit-jupiter:5.13.4'

examples/redis-backed-cache/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ dependencies {
1212
implementation 'com.google.code.gson:gson:2.13.1'
1313
implementation 'com.google.guava:guava:23.0'
1414
testImplementation 'org.testcontainers:testcontainers'
15-
testImplementation 'org.testcontainers:junit-jupiter'
15+
testImplementation 'org.testcontainers:testcontainers-junit-jupiter'
1616
testImplementation 'org.junit.jupiter:junit-jupiter:5.13.4'
1717
testImplementation 'ch.qos.logback:logback-classic:1.3.15'
1818
testImplementation 'org.assertj:assertj-core:3.27.3'

examples/selenium-container/build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,8 @@ dependencies {
1414
implementation 'org.seleniumhq.selenium:selenium-chrome-driver'
1515
implementation 'org.springframework.boot:spring-boot-starter-web'
1616
testImplementation 'org.springframework.boot:spring-boot-starter-test'
17-
testImplementation 'org.testcontainers:selenium'
18-
testImplementation 'org.testcontainers:junit-jupiter'
17+
testImplementation 'org.testcontainers:testcontainers-selenium'
18+
testImplementation 'org.testcontainers:testcontainers-junit-jupiter'
1919
testImplementation 'org.assertj:assertj-core:3.27.3'
2020
testRuntimeOnly "org.junit.platform:junit-platform-launcher:1.8.2"
2121
}

0 commit comments

Comments
 (0)