Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ plugins {
id 'io.franzbecker.gradle-lombok' version '5.0.0'
id 'com.github.johnrengelman.shadow' version '7.1.2'
id 'me.champeau.gradle.japicmp' version '0.2.9' apply false
id 'com.diffplug.spotless' version '6.8.0' apply false
id 'com.diffplug.spotless' version '6.11.0' apply false
id 'org.gradle.test-retry' version '1.4.1'
}

Expand Down
2 changes: 1 addition & 1 deletion examples/build.gradle
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
// empty build.gradle for dependabot
plugins {
id 'com.diffplug.spotless' version '6.8.0' apply false
id 'com.diffplug.spotless' version '6.11.0' apply false
}

apply from: "$rootDir/../gradle/ci-support.gradle"
Expand Down
2 changes: 1 addition & 1 deletion examples/redis-backed-cache-testng/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ repositories {

dependencies {
compileOnly 'org.slf4j:slf4j-api:1.7.36'
implementation 'redis.clients:jedis:4.2.3'
implementation 'redis.clients:jedis:4.3.1'
implementation 'com.google.code.gson:gson:2.10'
implementation 'com.google.guava:guava:23.0'
testImplementation 'org.testcontainers:testcontainers'
Expand Down
2 changes: 1 addition & 1 deletion examples/redis-backed-cache/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ repositories {

dependencies {
compileOnly 'org.slf4j:slf4j-api:1.7.36'
implementation 'redis.clients:jedis:4.2.3'
implementation 'redis.clients:jedis:4.3.1'
implementation 'com.google.code.gson:gson:2.10'
implementation 'com.google.guava:guava:23.0'
testImplementation 'org.testcontainers:testcontainers'
Expand Down
2 changes: 1 addition & 1 deletion examples/settings.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ buildscript {
dependencies {
classpath "gradle.plugin.ch.myniva.gradle:s3-build-cache:0.10.0"
classpath "com.gradle.enterprise:com.gradle.enterprise.gradle.plugin:3.11.3"
classpath "com.gradle:common-custom-user-data-gradle-plugin:1.8.1"
classpath "com.gradle:common-custom-user-data-gradle-plugin:1.8.2"
}
}

Expand Down
2 changes: 1 addition & 1 deletion examples/singleton-container/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ repositories {

dependencies {

implementation 'redis.clients:jedis:4.2.3'
implementation 'redis.clients:jedis:4.3.1'
implementation 'com.google.code.gson:gson:2.10'
implementation 'com.google.guava:guava:23.0'
compileOnly 'org.slf4j:slf4j-api:1.7.36'
Expand Down
2 changes: 1 addition & 1 deletion modules/k3s/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,6 @@ dependencies {
shaded 'com.fasterxml.jackson.dataformat:jackson-dataformat-yaml:2.8.8'

testImplementation 'io.fabric8:kubernetes-client:6.2.0'
testImplementation 'io.kubernetes:client-java:16.0.1'
testImplementation 'io.kubernetes:client-java:16.0.2'
testImplementation 'org.assertj:assertj-core:3.23.1'
}
4 changes: 2 additions & 2 deletions modules/localstack/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,10 @@ description = "Testcontainers :: Localstack"
dependencies {
api project(':testcontainers')

compileOnly 'com.amazonaws:aws-java-sdk-s3:1.12.333'
compileOnly 'com.amazonaws:aws-java-sdk-s3:1.12.337'
testImplementation 'com.amazonaws:aws-java-sdk-s3:1.12.333'
testImplementation 'com.amazonaws:aws-java-sdk-sqs:1.12.336'
testImplementation 'com.amazonaws:aws-java-sdk-logs:1.12.334'
testImplementation 'com.amazonaws:aws-java-sdk-logs:1.12.337'
testImplementation 'software.amazon.awssdk:s3:2.18.11'
testImplementation 'org.assertj:assertj-core:3.23.1'
}