Skip to content

Commit 8464651

Browse files
authored
Merge pull request #4448 from testcontainers/combined-pr-branch
2 parents 475e619 + be7eb84 commit 8464651

File tree

9 files changed

+13
-13
lines changed

9 files changed

+13
-13
lines changed

core/build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ dependencies {
6868

6969
api 'junit:junit:4.12'
7070
api 'org.slf4j:slf4j-api:1.7.32'
71-
compileOnly 'org.jetbrains:annotations:21.0.1'
71+
compileOnly 'org.jetbrains:annotations:22.0.0'
7272
testCompileClasspath 'org.jetbrains:annotations:21.0.1'
7373
api 'org.apache.commons:commons-compress:1.21'
7474
api ('org.rnorth.duct-tape:duct-tape:1.0.8') {
@@ -106,7 +106,7 @@ dependencies {
106106

107107
testImplementation 'org.apache.httpcomponents:httpclient:4.5.9'
108108
testImplementation 'redis.clients:jedis:3.7.0'
109-
testImplementation 'com.rabbitmq:amqp-client:5.12.0'
109+
testImplementation 'com.rabbitmq:amqp-client:5.13.1'
110110
testImplementation 'org.mongodb:mongo-java-driver:3.12.10'
111111

112112
testImplementation ('org.mockito:mockito-core:3.12.4') {

examples/cucumber/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ dependencies {
1010
implementation 'org.seleniumhq.selenium:selenium-remote-driver:3.141.59'
1111
implementation 'org.seleniumhq.selenium:selenium-firefox-driver:3.141.59'
1212
implementation 'org.seleniumhq.selenium:selenium-chrome-driver:3.141.59'
13-
testImplementation 'io.cucumber:cucumber-java:6.9.1'
13+
testImplementation 'io.cucumber:cucumber-java:6.11.0'
1414
testImplementation 'io.cucumber:cucumber-junit:6.11.0'
1515
testImplementation 'org.testcontainers:selenium'
1616
}

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.32'
11-
implementation 'redis.clients:jedis:3.6.1'
11+
implementation 'redis.clients:jedis:3.7.0'
1212
implementation 'com.google.code.gson:gson:2.8.8'
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.32'
11-
implementation 'redis.clients:jedis:3.6.1'
11+
implementation 'redis.clients:jedis:3.7.0'
1212
implementation 'com.google.code.gson:gson:2.8.8'
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.6.1'
11+
implementation 'redis.clients:jedis:3.7.0'
1212
implementation 'com.google.code.gson:gson:2.8.8'
1313
implementation 'com.google.guava:guava:23.0'
1414
compileOnly 'org.slf4j:slf4j-api:1.7.32'

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
plugins {
22
id("org.springframework.boot") version "2.5.4"
3-
id("org.jetbrains.kotlin.jvm") version "1.5.10"
3+
id("org.jetbrains.kotlin.jvm") version "1.5.30"
44
id("org.jetbrains.kotlin.plugin.spring") version "1.5.30"
55
}
66

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

modules/localstack/build.gradle

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,10 +3,10 @@ description = "Testcontainers :: Localstack"
33
dependencies {
44
api project(':testcontainers')
55

6-
compileOnly 'com.amazonaws:aws-java-sdk-s3:1.12.37'
6+
compileOnly 'com.amazonaws:aws-java-sdk-s3:1.12.62'
77
testImplementation 'com.amazonaws:aws-java-sdk-s3:1.12.37'
8-
testImplementation 'com.amazonaws:aws-java-sdk-sqs:1.12.37'
8+
testImplementation 'com.amazonaws:aws-java-sdk-sqs:1.12.62'
99
testImplementation 'com.amazonaws:aws-java-sdk-logs:1.12.60'
10-
testImplementation 'software.amazon.awssdk:s3:2.17.9'
10+
testImplementation 'software.amazon.awssdk:s3:2.17.34'
1111
testImplementation 'org.rnorth.visible-assertions:visible-assertions:2.1.2'
1212
}

modules/mssqlserver/build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,12 +10,12 @@ dependencies {
1010
compileOnly 'io.r2dbc:r2dbc-mssql:0.8.6.RELEASE'
1111

1212
testImplementation project(':jdbc-test')
13-
testImplementation 'com.microsoft.sqlserver:mssql-jdbc:9.3.1.jre8-preview'
13+
testImplementation 'com.microsoft.sqlserver:mssql-jdbc:9.4.0.jre8'
1414

1515
testImplementation project(':r2dbc')
1616
testImplementation 'io.r2dbc:r2dbc-mssql:0.8.5.RELEASE'
1717

1818
// MSSQL's wait strategy requires the JDBC driver
1919
testImplementation testFixtures(project(':r2dbc'))
20-
testImplementation 'com.microsoft.sqlserver:mssql-jdbc:9.3.1.jre8-preview'
20+
testImplementation 'com.microsoft.sqlserver:mssql-jdbc:9.4.0.jre8'
2121
}

0 commit comments

Comments
 (0)