Skip to content

Commit 5ea69b0

Browse files
authored
Merge pull request #7713 from testcontainers/combined-pr-branch
Combined dependencies PR
2 parents 34853fe + e698b14 commit 5ea69b0

File tree

25 files changed

+28
-28
lines changed

25 files changed

+28
-28
lines changed

.github/workflows/release-drafter.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,6 @@ jobs:
1818
if: github.repository == 'testcontainers/testcontainers-java'
1919
runs-on: ubuntu-latest
2020
steps:
21-
- uses: release-drafter/release-drafter@65c5fb495d1e69aa8c08a3317bc44ff8aabe9772 # v5.19.0
21+
- uses: release-drafter/release-drafter@09c613e259eb8d4e7c81c2cb00618eb5fc4575a7 # v5.19.0
2222
env:
2323
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

core/build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -99,7 +99,7 @@ dependencies {
9999

100100
api 'com.github.docker-java:docker-java-transport-zerodep'
101101

102-
shaded 'com.google.guava:guava:32.1.2-jre'
102+
shaded 'com.google.guava:guava:32.1.3-jre'
103103
shaded "org.yaml:snakeyaml:1.33"
104104

105105
shaded 'org.glassfish.main.external:trilead-ssh2-repackaged:4.1.2'
@@ -110,7 +110,7 @@ dependencies {
110110
exclude group: 'com.google.guava', module: 'guava'
111111
}
112112
testImplementation 'org.apache.httpcomponents:httpclient:4.5.14'
113-
testImplementation 'redis.clients:jedis:5.0.1'
113+
testImplementation 'redis.clients:jedis:5.0.2'
114114
testImplementation 'com.rabbitmq:amqp-client:5.19.0'
115115
testImplementation 'org.mongodb:mongo-java-driver:3.12.14'
116116

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.3.2'
11+
testImplementation 'com.hazelcast:hazelcast:5.3.4'
1212
testImplementation 'ch.qos.logback:logback-classic:1.3.11'
1313
testImplementation 'org.assertj:assertj-core:3.24.2'
1414
testImplementation 'org.junit.jupiter:junit-jupiter:5.10.0'

examples/linked-container/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ repositories {
77
}
88
dependencies {
99
compileOnly 'org.slf4j:slf4j-api:1.7.36'
10-
implementation 'com.squareup.okhttp3:okhttp:4.11.0'
10+
implementation 'com.squareup.okhttp3:okhttp:4.12.0'
1111
implementation 'org.json:json:20230618'
1212
testRuntimeOnly 'org.postgresql:postgresql:42.6.0'
1313
testImplementation 'ch.qos.logback:logback-classic:1.3.11'

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.24.2'
1111
testImplementation 'org.testcontainers:testcontainers'
12-
testImplementation 'io.nats:jnats:2.17.0'
12+
testImplementation 'io.nats:jnats:2.17.1'
1313
testImplementation 'ch.qos.logback:logback-classic:1.3.11'
1414
testImplementation 'org.apache.httpcomponents:httpclient:4.5.14'
1515
testImplementation 'org.junit.jupiter:junit-jupiter:5.10.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.1'
11+
implementation 'redis.clients:jedis:5.0.2'
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.1'
11+
implementation 'redis.clients:jedis:5.0.2'
1212
implementation 'com.google.code.gson:gson:2.10.1'
1313
implementation 'com.google.guava:guava:23.0'
1414
testImplementation 'org.testcontainers:testcontainers'

examples/selenium-container/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
plugins {
22
id 'java'
3-
id 'org.springframework.boot' version '2.7.16'
3+
id 'org.springframework.boot' version '2.7.17'
44
}
55
apply plugin: 'io.spring.dependency-management'
66

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.1"
10-
classpath "com.gradle:common-custom-user-data-gradle-plugin:1.11.3"
10+
classpath "com.gradle:common-custom-user-data-gradle-plugin:1.12"
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.1'
11+
implementation 'redis.clients:jedis:5.0.2'
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'

0 commit comments

Comments
 (0)