Skip to content
Closed
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 core/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ buildscript {

dependencies {
// https://github.com/melix/japicmp-gradle-plugin/issues/36
classpath 'com.google.guava:guava:30.1-jre'
classpath 'com.google.guava:guava:30.1.1-jre'
}
}

Expand Down
2 changes: 1 addition & 1 deletion examples/linked-container/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ dependencies {
compileOnly 'org.slf4j:slf4j-api:1.7.30'
implementation 'com.squareup.okhttp3:okhttp:4.9.1'
implementation 'org.json:json:20210307'
testImplementation 'org.postgresql:postgresql:42.2.18'
testImplementation 'org.postgresql:postgresql:42.2.20'
testImplementation 'ch.qos.logback:logback-classic:1.2.3'
testImplementation 'org.testcontainers:postgresql'
}
Expand Down
2 changes: 1 addition & 1 deletion examples/mongodb-container/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -9,5 +9,5 @@ repositories {
dependencies {
testImplementation 'org.testcontainers:testcontainers'
testImplementation 'junit:junit:4.13.2'
testCompileClasspath 'org.jetbrains:annotations:20.1.0'
testCompileClasspath 'org.jetbrains:annotations:21.0.1'
}
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.30'
implementation 'redis.clients:jedis:3.4.0'
implementation 'redis.clients:jedis:3.6.0'
implementation 'com.google.code.gson:gson:2.8.6'
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.30'
implementation 'redis.clients:jedis:3.4.0'
implementation 'redis.clients:jedis:3.6.0'
implementation 'com.google.code.gson:gson:2.8.6'
implementation 'com.google.guava:guava:23.0'
testImplementation 'org.testcontainers:testcontainers'
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:3.4.0'
implementation 'redis.clients:jedis:3.6.0'
implementation 'com.google.code.gson:gson:2.8.6'
implementation 'com.google.guava:guava:23.0'
compileOnly 'org.slf4j:slf4j-api:1.7.30'
Expand Down
2 changes: 1 addition & 1 deletion modules/jdbc-test/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ dependencies {
compile project(':jdbc')
compile project(':test-support')

compile 'com.google.guava:guava:30.1-jre'
compile 'com.google.guava:guava:30.1.1-jre'
compile 'org.apache.commons:commons-lang3:3.12.0'
compile 'com.zaxxer:HikariCP-java6:2.3.13'
compile 'commons-dbutils:commons-dbutils:1.7'
Expand Down
2 changes: 1 addition & 1 deletion modules/kafka/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,6 @@ dependencies {
compile project(':testcontainers')

testCompile 'org.apache.kafka:kafka-clients:2.8.0'
testCompile 'org.assertj:assertj-core:3.18.1'
testCompile 'org.assertj:assertj-core:3.19.0'
testCompile 'com.google.guava:guava:23.0'
}
2 changes: 1 addition & 1 deletion modules/pulsar/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,6 @@ dependencies {
compile project(':testcontainers')

testCompile group: 'org.apache.pulsar', name: 'pulsar-client', version: '2.7.2'
testCompile group: 'org.assertj', name: 'assertj-core', version: '3.18.1'
testCompile group: 'org.assertj', name: 'assertj-core', version: '3.19.0'
testCompile group: 'org.apache.pulsar', name: 'pulsar-client-admin', version: '2.7.2'
}