Skip to content

Commit e5916f1

Browse files
authored
Merge pull request #7617 from testcontainers/combined-pr-branch
Combined dependencies PR
2 parents 375ece0 + 27b8adf commit e5916f1

File tree

15 files changed

+17
-17
lines changed

15 files changed

+17
-17
lines changed

core/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -111,7 +111,7 @@ dependencies {
111111
}
112112
testImplementation 'org.apache.httpcomponents:httpclient:4.5.9'
113113
testImplementation 'redis.clients:jedis:5.0.0'
114-
testImplementation 'com.rabbitmq:amqp-client:5.18.0'
114+
testImplementation 'com.rabbitmq:amqp-client:5.19.0'
115115
testImplementation 'org.mongodb:mongo-java-driver:3.12.14'
116116

117117
testImplementation ('org.mockito:mockito-core:4.11.0') {

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:5.0.0'
11+
implementation 'redis.clients:jedis:5.0.1'
1212
implementation 'com.google.code.gson:gson:2.10.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:5.0.0'
11+
implementation 'redis.clients:jedis:5.0.1'
1212
implementation 'com.google.code.gson:gson:2.10.1'
1313
implementation 'com.google.guava:guava:23.0'
1414
testImplementation 'org.testcontainers:testcontainers'

examples/settings.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ buildscript {
77
dependencies {
88
classpath "gradle.plugin.ch.myniva.gradle:s3-build-cache:0.10.0"
99
classpath "com.gradle.enterprise:com.gradle.enterprise.gradle.plugin:3.15"
10-
classpath "com.gradle:common-custom-user-data-gradle-plugin:1.11.2"
10+
classpath "com.gradle:common-custom-user-data-gradle-plugin:1.11.3"
1111
}
1212
}
1313

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:5.0.0'
11+
implementation 'redis.clients:jedis:5.0.1'
1212
implementation 'com.google.code.gson:gson:2.10.1'
1313
implementation 'com.google.guava:guava:23.0'
1414
compileOnly 'org.slf4j:slf4j-api:1.7.36'

modules/azure/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,5 +6,5 @@ dependencies {
66
shaded 'com.squareup.okhttp3:okhttp:4.11.0'
77

88
testImplementation 'org.assertj:assertj-core:3.24.2'
9-
testImplementation 'com.azure:azure-cosmos:4.49.0'
9+
testImplementation 'com.azure:azure-cosmos:4.51.0'
1010
}

modules/dynalite/build.gradle

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

6-
compileOnly 'com.amazonaws:aws-java-sdk-dynamodb:1.12.557'
7-
testImplementation 'com.amazonaws:aws-java-sdk-dynamodb:1.12.557'
6+
compileOnly 'com.amazonaws:aws-java-sdk-dynamodb:1.12.560'
7+
testImplementation 'com.amazonaws:aws-java-sdk-dynamodb:1.12.560'
88
testImplementation 'org.assertj:assertj-core:3.24.2'
99
}

modules/gcloud/build.gradle

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

6-
testImplementation platform("com.google.cloud:libraries-bom:26.23.0")
6+
testImplementation platform("com.google.cloud:libraries-bom:26.24.0")
77
testImplementation 'com.google.cloud:google-cloud-bigquery'
88
testImplementation 'com.google.cloud:google-cloud-datastore'
99
testImplementation 'com.google.cloud:google-cloud-firestore'

modules/hivemq/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ dependencies {
55
api("org.jetbrains:annotations:24.0.1")
66

77
shaded("org.apache.commons:commons-lang3:3.13.0")
8-
shaded("commons-io:commons-io:2.13.0")
8+
shaded("commons-io:commons-io:2.14.0")
99
shaded("org.javassist:javassist:3.29.2-GA")
1010
shaded("org.jboss.shrinkwrap:shrinkwrap-api:1.2.6")
1111
shaded("org.jboss.shrinkwrap:shrinkwrap-impl-base:1.2.6")

modules/junit-jupiter/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ dependencies {
88
testImplementation project(':mysql')
99
testImplementation project(':postgresql')
1010
testImplementation 'com.zaxxer:HikariCP:4.0.3'
11-
testImplementation 'redis.clients:jedis:5.0.0'
11+
testImplementation 'redis.clients:jedis:5.0.1'
1212
testImplementation 'org.apache.httpcomponents:httpclient:4.5.14'
1313
testImplementation ('org.mockito:mockito-core:4.11.0') {
1414
exclude(module: 'hamcrest-core')

0 commit comments

Comments
 (0)