Skip to content

Commit 1cca822

Browse files
authored
Merge pull request #4194 from testcontainers/combined-pr-branch
2 parents 4d93101 + 054bff6 commit 1cca822

File tree

14 files changed

+21
-21
lines changed

14 files changed

+21
-21
lines changed

core/build.gradle

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ buildscript {
55

66
dependencies {
77
// https://github.com/melix/japicmp-gradle-plugin/issues/36
8-
classpath 'com.google.guava:guava:30.1-jre'
8+
classpath 'com.google.guava:guava:30.1.1-jre'
99
}
1010
}
1111

@@ -101,8 +101,8 @@ dependencies {
101101

102102
api 'junit:junit:4.12'
103103
api 'org.slf4j:slf4j-api:1.7.30'
104-
compileOnly 'org.jetbrains:annotations:20.1.0'
105-
testCompileClasspath 'org.jetbrains:annotations:20.0.0'
104+
compileOnly 'org.jetbrains:annotations:21.0.1'
105+
testCompileClasspath 'org.jetbrains:annotations:21.0.1'
106106
api 'org.apache.commons:commons-compress:1.20'
107107
api ('org.rnorth.duct-tape:duct-tape:1.0.8') {
108108
exclude(group: 'org.jetbrains', module: 'annotations')
@@ -127,7 +127,7 @@ dependencies {
127127

128128
api 'com.github.docker-java:docker-java-transport-zerodep:3.2.8'
129129

130-
shaded "org.yaml:snakeyaml:1.27"
130+
shaded "org.yaml:snakeyaml:1.29"
131131

132132
shaded 'org.glassfish.main.external:trilead-ssh2-repackaged:4.1.2'
133133

@@ -137,7 +137,7 @@ dependencies {
137137

138138
testImplementation 'org.apache.httpcomponents:httpclient:4.5.9'
139139
testImplementation 'redis.clients:jedis:3.6.0'
140-
testImplementation 'com.rabbitmq:amqp-client:5.9.0'
140+
testImplementation 'com.rabbitmq:amqp-client:5.12.0'
141141
testImplementation 'org.mongodb:mongo-java-driver:3.12.7'
142142

143143
testImplementation ('org.mockito:mockito-core:3.10.0') {

examples/kafka-cluster/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ dependencies {
1010
testCompileOnly "org.projectlombok:lombok:1.18.20"
1111
testAnnotationProcessor "org.projectlombok:lombok:1.18.10"
1212
testImplementation 'org.testcontainers:kafka'
13-
testImplementation 'org.apache.kafka:kafka-clients:2.3.1'
13+
testImplementation 'org.apache.kafka:kafka-clients:2.8.0'
1414
testImplementation 'org.assertj:assertj-core:3.14.0'
1515
testImplementation 'com.google.guava:guava:23.0'
1616
testImplementation 'org.slf4j:slf4j-simple:1.7.30'

examples/linked-container/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ dependencies {
99
compileOnly 'org.slf4j:slf4j-api:1.7.30'
1010
implementation 'com.squareup.okhttp3:okhttp:4.9.1'
1111
implementation 'org.json:json:20210307'
12-
testImplementation 'org.postgresql:postgresql:42.2.18'
12+
testImplementation 'org.postgresql:postgresql:42.2.20'
1313
testImplementation 'ch.qos.logback:logback-classic:1.2.3'
1414
testImplementation 'org.testcontainers:postgresql'
1515
}

examples/mongodb-container/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,5 +9,5 @@ repositories {
99
dependencies {
1010
testImplementation 'org.testcontainers:testcontainers'
1111
testImplementation 'junit:junit:4.13.2'
12-
testCompileClasspath 'org.jetbrains:annotations:20.1.0'
12+
testCompileClasspath 'org.jetbrains:annotations:21.0.1'
1313
}

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.30'
11-
implementation 'redis.clients:jedis:3.4.0'
11+
implementation 'redis.clients:jedis:3.6.0'
1212
implementation 'com.google.code.gson:gson:2.8.6'
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.30'
11-
implementation 'redis.clients:jedis:3.4.0'
11+
implementation 'redis.clients:jedis:3.6.0'
1212
implementation 'com.google.code.gson:gson:2.8.6'
1313
implementation 'com.google.guava:guava:23.0'
1414
testImplementation 'org.testcontainers:testcontainers'

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:3.4.0'
11+
implementation 'redis.clients:jedis:3.6.0'
1212
implementation 'com.google.code.gson:gson:2.8.6'
1313
implementation 'com.google.guava:guava:23.0'
1414
compileOnly 'org.slf4j:slf4j-api:1.7.30'

modules/clickhouse/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,5 +5,5 @@ dependencies {
55
api project(':jdbc')
66

77
testImplementation project(':jdbc-test')
8-
testImplementation 'ru.yandex.clickhouse:clickhouse-jdbc:0.2.4'
8+
testImplementation 'ru.yandex.clickhouse:clickhouse-jdbc:0.3.1-patch'
99
}

modules/elasticsearch/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,6 @@ description = "TestContainers :: elasticsearch"
33
dependencies {
44
api project(':testcontainers')
55
testImplementation "org.elasticsearch.client:elasticsearch-rest-client:7.13.0"
6-
testImplementation "org.elasticsearch.client:transport:7.12.1"
6+
testImplementation "org.elasticsearch.client:transport:7.13.1"
77
testImplementation 'org.rnorth.visible-assertions:visible-assertions:2.1.2'
88
}

modules/jdbc-test/build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ dependencies {
22
api project(':jdbc')
33
api project(':test-support')
44

5-
api 'com.google.guava:guava:30.1-jre'
5+
api 'com.google.guava:guava:30.1.1-jre'
66
api 'org.apache.commons:commons-lang3:3.12.0'
77
api 'com.zaxxer:HikariCP-java6:2.3.13'
88
api 'commons-dbutils:commons-dbutils:1.7'
@@ -14,7 +14,7 @@ dependencies {
1414
exclude(group: "net.java.dev.jna", module: "jna")
1515
}
1616

17-
api 'org.apache.tomcat:tomcat-jdbc:9.0.40'
17+
api 'org.apache.tomcat:tomcat-jdbc:10.0.6'
1818
api 'org.vibur:vibur-dbcp:25.0'
1919
api 'mysql:mysql-connector-java:8.0.25'
2020
}

0 commit comments

Comments
 (0)