Skip to content

Commit 8fe1c3c

Browse files
authored
Merge pull request testcontainers#4352 from testcontainers/combined-pr-branch
2 parents 289521d + d94acf0 commit 8fe1c3c

File tree

14 files changed

+22
-22
lines changed

14 files changed

+22
-22
lines changed

core/build.gradle

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -95,12 +95,12 @@ configurations.all {
9595
}
9696

9797
dependencies {
98-
baseline 'org.testcontainers:testcontainers:1.15.3', {
98+
baseline 'org.testcontainers:testcontainers:1.16.0', {
9999
exclude group: "*", module: "*"
100100
}
101101

102102
api 'junit:junit:4.12'
103-
api 'org.slf4j:slf4j-api:1.7.30'
103+
api 'org.slf4j:slf4j-api:1.7.32'
104104
compileOnly 'org.jetbrains:annotations:21.0.1'
105105
testCompileClasspath 'org.jetbrains:annotations:21.0.1'
106106
api 'org.apache.commons:commons-compress:1.20'
@@ -138,9 +138,9 @@ dependencies {
138138
}
139139

140140
testImplementation 'org.apache.httpcomponents:httpclient:4.5.9'
141-
testImplementation 'redis.clients:jedis:3.6.1'
141+
testImplementation 'redis.clients:jedis:3.6.3'
142142
testImplementation 'com.rabbitmq:amqp-client:5.12.0'
143-
testImplementation 'org.mongodb:mongo-java-driver:3.12.7'
143+
testImplementation 'org.mongodb:mongo-java-driver:3.12.9'
144144

145145
testImplementation ('org.mockito:mockito-core:3.11.2') {
146146
exclude(module: 'hamcrest-core')

examples/linked-container/build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,10 +6,10 @@ repositories {
66
jcenter()
77
}
88
dependencies {
9-
compileOnly 'org.slf4j:slf4j-api:1.7.30'
9+
compileOnly 'org.slf4j:slf4j-api:1.7.32'
1010
implementation 'com.squareup.okhttp3:okhttp:4.9.1'
1111
implementation 'org.json:json:20210307'
12-
testImplementation 'org.postgresql:postgresql:42.2.22'
12+
testImplementation 'org.postgresql:postgresql:42.2.23'
1313
testImplementation 'ch.qos.logback:logback-classic:1.2.3'
1414
testImplementation 'org.testcontainers:postgresql'
1515
}

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ repositories {
77
}
88

99
dependencies {
10-
compileOnly 'org.slf4j:slf4j-api:1.7.30'
10+
compileOnly 'org.slf4j:slf4j-api:1.7.32'
1111
implementation 'redis.clients:jedis:3.6.1'
1212
implementation 'com.google.code.gson:gson:2.8.7'
1313
implementation 'com.google.guava:guava:23.0'

examples/redis-backed-cache/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ repositories {
77
}
88

99
dependencies {
10-
compileOnly 'org.slf4j:slf4j-api:1.7.30'
10+
compileOnly 'org.slf4j:slf4j-api:1.7.32'
1111
implementation 'redis.clients:jedis:3.6.1'
1212
implementation 'com.google.code.gson:gson:2.8.7'
1313
implementation 'com.google.guava:guava:23.0'

examples/singleton-container/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ dependencies {
1111
implementation 'redis.clients:jedis:3.6.1'
1212
implementation 'com.google.code.gson:gson:2.8.7'
1313
implementation 'com.google.guava:guava:23.0'
14-
compileOnly 'org.slf4j:slf4j-api:1.7.30'
14+
compileOnly 'org.slf4j:slf4j-api:1.7.32'
1515

1616
testImplementation 'ch.qos.logback:logback-classic:1.2.3'
1717
testImplementation 'org.testcontainers:testcontainers'

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
plugins {
22
id("org.springframework.boot") version "2.5.2"
33
id("org.jetbrains.kotlin.jvm") version "1.5.10"
4-
id("org.jetbrains.kotlin.plugin.spring") version "1.5.20"
4+
id("org.jetbrains.kotlin.plugin.spring") version "1.5.21"
55
}
66

77
apply plugin: 'io.spring.dependency-management'

modules/couchbase/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,6 @@ description = "Testcontainers :: Couchbase"
33
dependencies {
44
api project(':testcontainers')
55

6-
testImplementation 'com.couchbase.client:java-client:3.1.6'
6+
testImplementation 'com.couchbase.client:java-client:3.2.0'
77
testImplementation 'org.awaitility:awaitility:4.1.0'
88
}

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.13.2"
6+
testImplementation "org.elasticsearch.client:transport:7.13.4"
77
testImplementation 'org.rnorth.visible-assertions:visible-assertions:2.1.2'
88
}

modules/jdbc-test/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,5 +16,5 @@ dependencies {
1616

1717
api 'org.apache.tomcat:tomcat-jdbc:10.0.7'
1818
api 'org.vibur:vibur-dbcp:25.0'
19-
api 'mysql:mysql-connector-java:8.0.25'
19+
api 'mysql:mysql-connector-java:8.0.26'
2020
}

modules/junit-jupiter/build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ dependencies {
77
testImplementation project(':mysql')
88
testImplementation project(':postgresql')
99
testImplementation 'com.zaxxer:HikariCP:4.0.3'
10-
testImplementation 'redis.clients:jedis:3.6.1'
10+
testImplementation 'redis.clients:jedis:3.6.3'
1111
testImplementation 'org.apache.httpcomponents:httpclient:4.5.13'
1212
testImplementation ('org.mockito:mockito-core:3.11.2') {
1313
exclude(module: 'hamcrest-core')
@@ -16,7 +16,7 @@ dependencies {
1616
testImplementation 'org.junit.jupiter:junit-jupiter-params:5.7.2'
1717

1818
testRuntimeOnly 'org.postgresql:postgresql:42.2.22'
19-
testRuntimeOnly 'mysql:mysql-connector-java:8.0.25'
19+
testRuntimeOnly 'mysql:mysql-connector-java:8.0.26'
2020
testRuntimeOnly 'org.junit.jupiter:junit-jupiter-engine:5.7.2'
2121
}
2222

0 commit comments

Comments
 (0)