Skip to content

Commit bd6ee9c

Browse files
authored
Merge pull request #6150 from testcontainers/combined-pr-branch
Combined dependencies PR
2 parents 0699126 + 2c6b1fe commit bd6ee9c

File tree

14 files changed

+17
-17
lines changed

14 files changed

+17
-17
lines changed

build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,10 +13,10 @@ buildscript {
1313

1414
plugins {
1515
id 'io.franzbecker.gradle-lombok' version '5.0.0'
16-
id 'com.github.johnrengelman.shadow' version '7.0.0'
16+
id 'com.github.johnrengelman.shadow' version '7.1.2'
1717
id 'me.champeau.gradle.japicmp' version '0.2.9' apply false
1818
id 'com.diffplug.spotless' version '6.8.0' apply false
19-
id 'org.gradle.test-retry' version '1.4.0'
19+
id 'org.gradle.test-retry' version '1.4.1'
2020
}
2121

2222
apply from: "$rootDir/gradle/ci-support.gradle"

docs/examples/junit5/redis/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ description = "Examples for docs"
33
dependencies {
44
api "io.lettuce:lettuce-core:5.1.1.RELEASE"
55

6-
testImplementation "org.junit.jupiter:junit-jupiter-api:5.4.2"
6+
testImplementation "org.junit.jupiter:junit-jupiter-api:5.9.1"
77
testImplementation "org.junit.jupiter:junit-jupiter-params:5.9.1"
88
testRuntimeOnly "org.junit.jupiter:junit-jupiter-engine:5.9.1"
99
testImplementation project(":testcontainers")

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ repositories {
99
dependencies {
1010
compileOnly 'org.slf4j:slf4j-api:1.7.36'
1111
implementation 'redis.clients:jedis:4.2.3'
12-
implementation 'com.google.code.gson:gson:2.9.1'
12+
implementation 'com.google.code.gson:gson:2.10'
1313
implementation 'com.google.guava:guava:23.0'
1414
testImplementation 'org.testcontainers:testcontainers'
1515
testImplementation 'ch.qos.logback:logback-classic:1.3.4'

examples/redis-backed-cache/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ repositories {
99
dependencies {
1010
compileOnly 'org.slf4j:slf4j-api:1.7.36'
1111
implementation 'redis.clients:jedis:4.2.3'
12-
implementation 'com.google.code.gson:gson:2.9.1'
12+
implementation 'com.google.code.gson:gson:2.10'
1313
implementation 'com.google.guava:guava:23.0'
1414
testImplementation 'org.testcontainers:testcontainers'
1515
testImplementation 'junit:junit:4.13.2'

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.4'
3+
id 'org.springframework.boot' version '2.7.5'
44
}
55
apply plugin: 'io.spring.dependency-management'
66

examples/singleton-container/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ repositories {
99
dependencies {
1010

1111
implementation 'redis.clients:jedis:4.2.3'
12-
implementation 'com.google.code.gson:gson:2.9.1'
12+
implementation 'com.google.code.gson:gson:2.10'
1313
implementation 'com.google.guava:guava:23.0'
1414
compileOnly 'org.slf4j:slf4j-api:1.7.36'
1515

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

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

examples/spring-boot/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.4'
3+
id 'org.springframework.boot' version '2.7.5'
44
}
55
apply plugin: 'io.spring.dependency-management'
66

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"
33
dependencies {
44
api project(':testcontainers')
55

6-
compileOnly 'com.amazonaws:aws-java-sdk-dynamodb:1.12.333'
7-
testImplementation 'com.amazonaws:aws-java-sdk-dynamodb:1.12.314'
6+
compileOnly 'com.amazonaws:aws-java-sdk-dynamodb:1.12.336'
7+
testImplementation 'com.amazonaws:aws-java-sdk-dynamodb:1.12.336'
88
testImplementation 'org.assertj:assertj-core:3.23.1'
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 'com.google.cloud:google-cloud-datastore:2.12.3'
6+
testImplementation 'com.google.cloud:google-cloud-datastore:2.12.4'
77
testImplementation 'com.google.cloud:google-cloud-firestore:3.7.0'
88
testImplementation 'com.google.cloud:google-cloud-pubsub:1.120.24'
99
testImplementation 'com.google.cloud:google-cloud-spanner:6.32.0'

0 commit comments

Comments
 (0)