Skip to content

Commit b533d5f

Browse files
authored
Merge pull request #10717 from testcontainers/combined-pr-branch
Combined dependencies PR
2 parents 3a4794e + 2374a1c commit b533d5f

File tree

9 files changed

+10
-10
lines changed

9 files changed

+10
-10
lines changed

docs/examples/junit4/generic/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,6 @@ dependencies {
77
testImplementation project(":testcontainers-mysql")
88

99
testRuntimeOnly 'mysql:mysql-connector-java:8.0.33'
10-
testImplementation "org.seleniumhq.selenium:selenium-api:4.34.0"
10+
testImplementation "org.seleniumhq.selenium:selenium-api:4.35.0"
1111
testImplementation 'org.assertj:assertj-core:3.27.4'
1212
}

docs/examples/junit4/redis/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
description = "Examples for docs"
22

33
dependencies {
4-
api "io.lettuce:lettuce-core:6.7.1.RELEASE"
4+
api "io.lettuce:lettuce-core:6.8.0.RELEASE"
55

66
testImplementation "junit:junit:4.13.2"
77
testImplementation project(":testcontainers")

docs/examples/junit5/redis/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
description = "Examples for docs"
22

33
dependencies {
4-
api "io.lettuce:lettuce-core:6.7.1.RELEASE"
4+
api "io.lettuce:lettuce-core:6.8.0.RELEASE"
55

66
testImplementation 'org.junit.jupiter:junit-jupiter-api:5.13.4'
77
testImplementation 'org.junit.jupiter:junit-jupiter-params:5.13.4'

docs/examples/spock/redis/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ plugins {
44
}
55

66
dependencies {
7-
api "io.lettuce:lettuce-core:6.7.1.RELEASE"
7+
api "io.lettuce:lettuce-core:6.8.0.RELEASE"
88
testImplementation 'org.spockframework:spock-core:2.3-groovy-4.0'
99
testImplementation project(":testcontainers-spock")
1010
testImplementation 'ch.qos.logback:logback-classic:1.3.15'

examples/cucumber/build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,14 +7,14 @@ repositories {
77
}
88

99
dependencies {
10-
implementation platform('org.seleniumhq.selenium:selenium-bom:4.34.0')
10+
implementation platform('org.seleniumhq.selenium:selenium-bom:4.35.0')
1111
implementation 'org.seleniumhq.selenium:selenium-remote-driver'
1212
implementation 'org.seleniumhq.selenium:selenium-firefox-driver'
1313
implementation 'org.seleniumhq.selenium:selenium-chrome-driver'
1414

1515
testImplementation platform('org.junit:junit-bom:5.13.4')
1616
testImplementation 'org.junit.platform:junit-platform-suite'
17-
testImplementation platform('io.cucumber:cucumber-bom:7.27.0')
17+
testImplementation platform('io.cucumber:cucumber-bom:7.27.2')
1818
testImplementation 'io.cucumber:cucumber-java'
1919
testImplementation 'io.cucumber:cucumber-junit-platform-engine'
2020
testImplementation 'org.testcontainers:testcontainers-selenium'

examples/nats/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ repositories {
99
dependencies {
1010
testImplementation 'org.assertj:assertj-core:3.27.4'
1111
testImplementation 'org.testcontainers:testcontainers'
12-
testImplementation 'io.nats:jnats:2.21.4'
12+
testImplementation 'io.nats:jnats:2.21.5'
1313
testImplementation 'ch.qos.logback:logback-classic:1.3.15'
1414
testImplementation 'org.apache.httpcomponents:httpclient:4.5.14'
1515
testImplementation 'org.junit.jupiter:junit-jupiter:5.13.4'

examples/redis-backed-cache-testng/build.gradle

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

99
dependencies {
1010
compileOnly 'org.slf4j:slf4j-api:1.7.36'
11-
implementation 'redis.clients:jedis:6.0.0'
11+
implementation 'redis.clients:jedis:6.1.0'
1212
implementation 'com.google.code.gson:gson:2.13.1'
1313
implementation 'com.google.guava:guava:23.0'
1414
testImplementation 'org.testcontainers:testcontainers'

examples/redis-backed-cache/build.gradle

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

99
dependencies {
1010
compileOnly 'org.slf4j:slf4j-api:1.7.36'
11-
implementation 'redis.clients:jedis:6.0.0'
11+
implementation 'redis.clients:jedis:6.1.0'
1212
implementation 'com.google.code.gson:gson:2.13.1'
1313
implementation 'com.google.guava:guava:23.0'
1414
testImplementation 'org.testcontainers:testcontainers'

examples/singleton-container/build.gradle

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

99
dependencies {
1010

11-
implementation 'redis.clients:jedis:6.0.0'
11+
implementation 'redis.clients:jedis:6.1.0'
1212
implementation 'com.google.code.gson:gson:2.13.1'
1313
implementation 'com.google.guava:guava:23.0'
1414
compileOnly 'org.slf4j:slf4j-api:1.7.36'

0 commit comments

Comments
 (0)