Skip to content

Commit 9013438

Browse files
authored
Merge pull request #6205 from testcontainers/combined-pr-branch
Combined dependencies PR
2 parents 858dd0a + c07edbd commit 9013438

File tree

19 files changed

+23
-23
lines changed

19 files changed

+23
-23
lines changed

core/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -97,7 +97,7 @@ dependencies {
9797
testImplementation 'com.rabbitmq:amqp-client:5.16.0'
9898
testImplementation 'org.mongodb:mongo-java-driver:3.12.11'
9999

100-
testImplementation ('org.mockito:mockito-core:4.8.1') {
100+
testImplementation ('org.mockito:mockito-core:4.9.0') {
101101
exclude(module: 'hamcrest-core')
102102
}
103103
// Synthetic JAR used for MountableFileTest and DirectoryTarResourceTest

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:5.1.1.RELEASE"
4+
api "io.lettuce:lettuce-core:6.2.1.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:5.1.1.RELEASE"
4+
api "io.lettuce:lettuce-core:6.2.1.RELEASE"
55

66
testImplementation "org.junit.jupiter:junit-jupiter-api:5.9.1"
77
testImplementation "org.junit.jupiter:junit-jupiter-params:5.9.1"

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:5.2.0.RELEASE"
7+
api "io.lettuce:lettuce-core:6.2.1.RELEASE"
88
testImplementation 'org.spockframework:spock-core:2.3-groovy-4.0'
99
testImplementation project(":spock")
1010
testImplementation 'ch.qos.logback:logback-classic:1.3.4'

examples/hazelcast/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
testImplementation 'org.testcontainers:testcontainers'
11-
testImplementation 'com.hazelcast:hazelcast:5.2.0'
11+
testImplementation 'com.hazelcast:hazelcast:5.2.1'
1212
testImplementation 'ch.qos.logback:logback-classic:1.3.4'
1313
testImplementation 'org.assertj:assertj-core:3.23.1'
1414
}

examples/spring-boot-kotlin-redis/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
plugins {
22
id("org.springframework.boot") version "2.7.5"
33
id("org.jetbrains.kotlin.jvm") version "1.7.20"
4-
id("org.jetbrains.kotlin.plugin.spring") version "1.7.20"
4+
id("org.jetbrains.kotlin.plugin.spring") version "1.7.21"
55
}
66

77
apply plugin: 'io.spring.dependency-management'

examples/zookeeper/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.apache.curator:curator-framework:5.3.0'
10+
testImplementation 'org.apache.curator:curator-framework:5.4.0'
1111
testImplementation 'org.testcontainers:testcontainers'
1212
testImplementation 'org.assertj:assertj-core:3.23.1'
1313
testImplementation 'ch.qos.logback:logback-classic:1.3.4'

modules/elasticsearch/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ description = "TestContainers :: elasticsearch"
22

33
dependencies {
44
api project(':testcontainers')
5-
testImplementation "org.elasticsearch.client:elasticsearch-rest-client:8.5.0"
5+
testImplementation "org.elasticsearch.client:elasticsearch-rest-client:8.5.1"
66
testImplementation "org.elasticsearch.client:transport:7.17.7"
77
testImplementation 'org.assertj:assertj-core:3.23.1'
88
}

modules/gcloud/build.gradle

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,10 +3,10 @@ description = "Testcontainers :: GCloud"
33
dependencies {
44
api project(':testcontainers')
55

6-
testImplementation 'com.google.cloud:google-cloud-datastore:2.12.4'
6+
testImplementation 'com.google.cloud:google-cloud-datastore:2.12.5'
77
testImplementation 'com.google.cloud:google-cloud-firestore:3.7.0'
8-
testImplementation 'com.google.cloud:google-cloud-pubsub:1.120.24'
8+
testImplementation 'com.google.cloud:google-cloud-pubsub:1.120.25'
99
testImplementation 'com.google.cloud:google-cloud-spanner:6.32.0'
10-
testImplementation 'com.google.cloud:google-cloud-bigtable:2.15.0'
10+
testImplementation 'com.google.cloud:google-cloud-bigtable:2.16.0'
1111
testImplementation 'org.assertj:assertj-core:3.23.1'
1212
}

modules/hivemq/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ dependencies {
1313

1414
testImplementation("org.junit.jupiter:junit-jupiter-api:5.9.1")
1515
testImplementation(project(":junit-jupiter"))
16-
testImplementation("com.hivemq:hivemq-extension-sdk:4.9.0")
16+
testImplementation("com.hivemq:hivemq-extension-sdk:4.9.1")
1717
testImplementation("com.hivemq:hivemq-mqtt-client:1.3.0")
1818
testImplementation("org.apache.httpcomponents:httpclient:4.5.13")
1919
testImplementation("ch.qos.logback:logback-classic:1.4.4")

0 commit comments

Comments
 (0)