Skip to content

Commit f788ab6

Browse files
authored
Merge pull request #8151 from testcontainers/combined-pr-branch
Combined dependencies PR
2 parents 2e829ba + bb5c404 commit f788ab6

File tree

45 files changed

+58
-58
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

45 files changed

+58
-58
lines changed

core/build.gradle

+2-2
Original file line numberDiff line numberDiff line change
@@ -120,12 +120,12 @@ dependencies {
120120
// Synthetic JAR used for MountableFileTest and DirectoryTarResourceTest
121121
testImplementation files('testlib/repo/fakejar/fakejar/0/fakejar-0.jar')
122122

123-
testImplementation 'org.assertj:assertj-core:3.24.2'
123+
testImplementation 'org.assertj:assertj-core:3.25.1'
124124

125125
jarFileTestCompileOnly "org.projectlombok:lombok:${lombok.version}"
126126
jarFileTestAnnotationProcessor "org.projectlombok:lombok:${lombok.version}"
127127
jarFileTestImplementation 'junit:junit:4.13.2'
128-
jarFileTestImplementation 'org.assertj:assertj-core:3.24.2'
128+
jarFileTestImplementation 'org.assertj:assertj-core:3.25.1'
129129
jarFileTestImplementation 'org.ow2.asm:asm-debug-all:5.2'
130130
}
131131

docs/examples/junit4/generic/build.gradle

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ dependencies {
77
testImplementation project(":mysql")
88

99
testRuntimeOnly 'mysql:mysql-connector-java:8.0.33'
10-
testImplementation "org.seleniumhq.selenium:selenium-api:4.16.1"
10+
testImplementation "org.seleniumhq.selenium:selenium-api:4.17.0"
1111
testImplementation 'org.assertj:assertj-core:3.24.2'
1212
}
1313

docs/examples/junit4/redis/build.gradle

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
description = "Examples for docs"
22

33
dependencies {
4-
api "io.lettuce:lettuce-core:6.3.0.RELEASE"
4+
api "io.lettuce:lettuce-core:6.3.1.RELEASE"
55

66
testImplementation "junit:junit:4.13.2"
77
testImplementation project(":testcontainers")

docs/examples/junit5/redis/build.gradle

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
description = "Examples for docs"
22

33
dependencies {
4-
api "io.lettuce:lettuce-core:6.3.0.RELEASE"
4+
api "io.lettuce:lettuce-core:6.3.1.RELEASE"
55

66
testImplementation "org.junit.jupiter:junit-jupiter-api:5.10.1"
77
testImplementation "org.junit.jupiter:junit-jupiter-params:5.10.1"

docs/examples/spock/redis/build.gradle

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ plugins {
44
}
55

66
dependencies {
7-
api "io.lettuce:lettuce-core:6.3.0.RELEASE"
7+
api "io.lettuce:lettuce-core:6.3.1.RELEASE"
88
testImplementation 'org.spockframework:spock-core:2.3-groovy-4.0'
99
testImplementation project(":spock")
1010
testImplementation 'ch.qos.logback:logback-classic:1.3.14'

examples/cucumber/build.gradle

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ repositories {
77
}
88

99
dependencies {
10-
implementation platform('org.seleniumhq.selenium:selenium-bom:4.16.1')
10+
implementation platform('org.seleniumhq.selenium:selenium-bom:4.17.0')
1111
implementation 'org.seleniumhq.selenium:selenium-remote-driver'
1212
implementation 'org.seleniumhq.selenium:selenium-firefox-driver'
1313
implementation 'org.seleniumhq.selenium:selenium-chrome-driver'

examples/nats/build.gradle

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ repositories {
99
dependencies {
1010
testImplementation 'org.assertj:assertj-core:3.24.2'
1111
testImplementation 'org.testcontainers:testcontainers'
12-
testImplementation 'io.nats:jnats:2.17.1'
12+
testImplementation 'io.nats:jnats:2.17.2'
1313
testImplementation 'ch.qos.logback:logback-classic:1.3.14'
1414
testImplementation 'org.apache.httpcomponents:httpclient:4.5.14'
1515
testImplementation 'org.junit.jupiter:junit-jupiter:5.10.1'

examples/neo4j-container/build.gradle

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ repositories {
88

99
dependencies {
1010
testImplementation 'org.assertj:assertj-core:3.24.2'
11-
testImplementation 'org.neo4j.driver:neo4j-java-driver:4.4.12'
11+
testImplementation 'org.neo4j.driver:neo4j-java-driver:4.4.13'
1212
testImplementation 'org.testcontainers:neo4j'
1313
testImplementation 'org.testcontainers:junit-jupiter'
1414
testImplementation 'org.junit.jupiter:junit-jupiter:5.10.1'

examples/settings.gradle

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ buildscript {
77
dependencies {
88
classpath "gradle.plugin.ch.myniva.gradle:s3-build-cache:0.10.0"
99
classpath "com.gradle.enterprise:com.gradle.enterprise.gradle.plugin:3.16"
10-
classpath "com.gradle:common-custom-user-data-gradle-plugin:1.12"
10+
classpath "com.gradle:common-custom-user-data-gradle-plugin:1.12.1"
1111
}
1212
}
1313

modules/activemq/build.gradle

+2-2
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,9 @@ description = "Testcontainers :: ActiveMQ"
33
dependencies {
44
api project(':testcontainers')
55

6-
testImplementation 'org.assertj:assertj-core:3.24.2'
6+
testImplementation 'org.assertj:assertj-core:3.25.1'
77
testImplementation "org.apache.activemq:activemq-client-jakarta:5.18.2"
8-
testImplementation "org.apache.activemq:artemis-jakarta-client:2.29.0"
8+
testImplementation "org.apache.activemq:artemis-jakarta-client:2.31.2"
99
}
1010

1111
test {

modules/azure/build.gradle

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,6 @@ dependencies {
55
// TODO use JDK's HTTP client and/or Apache HttpClient5
66
shaded 'com.squareup.okhttp3:okhttp:4.12.0'
77

8-
testImplementation 'org.assertj:assertj-core:3.24.2'
8+
testImplementation 'org.assertj:assertj-core:3.25.1'
99
testImplementation 'com.azure:azure-cosmos:4.53.1'
1010
}

modules/cassandra/build.gradle

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,5 +11,5 @@ dependencies {
1111
api "com.datastax.cassandra:cassandra-driver-core:3.10.0"
1212

1313
testImplementation 'com.datastax.oss:java-driver-core:4.17.0'
14-
testImplementation 'org.assertj:assertj-core:3.24.2'
14+
testImplementation 'org.assertj:assertj-core:3.25.1'
1515
}

modules/clickhouse/build.gradle

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,5 +6,5 @@ dependencies {
66

77
testImplementation project(':jdbc-test')
88
testRuntimeOnly 'ru.yandex.clickhouse:clickhouse-jdbc:0.3.2'
9-
testImplementation 'org.assertj:assertj-core:3.24.2'
9+
testImplementation 'org.assertj:assertj-core:3.25.1'
1010
}

modules/consul/build.gradle

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,5 +5,5 @@ dependencies {
55

66
testImplementation 'com.ecwid.consul:consul-api:1.4.5'
77
testImplementation 'io.rest-assured:rest-assured:5.4.0'
8-
testImplementation 'org.assertj:assertj-core:3.24.2'
8+
testImplementation 'org.assertj:assertj-core:3.25.1'
99
}

modules/couchbase/build.gradle

+2-2
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ dependencies {
55
// TODO use JDK's HTTP client and/or Apache HttpClient5
66
shaded 'com.squareup.okhttp3:okhttp:4.12.0'
77

8-
testImplementation 'com.couchbase.client:java-client:3.5.1'
8+
testImplementation 'com.couchbase.client:java-client:3.5.2'
99
testImplementation 'org.awaitility:awaitility:4.2.0'
10-
testImplementation 'org.assertj:assertj-core:3.24.2'
10+
testImplementation 'org.assertj:assertj-core:3.25.1'
1111
}

modules/database-commons/build.gradle

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,5 +3,5 @@ description = "Testcontainers :: Database-Commons"
33
dependencies {
44
api project(':testcontainers')
55

6-
testImplementation 'org.assertj:assertj-core:3.24.2'
6+
testImplementation 'org.assertj:assertj-core:3.25.1'
77
}

modules/db2/build.gradle

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,5 +5,5 @@ dependencies {
55

66
testImplementation project(':jdbc-test')
77
testRuntimeOnly 'com.ibm.db2:jcc:11.5.9.0'
8-
testImplementation 'org.assertj:assertj-core:3.24.2'
8+
testImplementation 'org.assertj:assertj-core:3.25.1'
99
}

modules/dynalite/build.gradle

+2-2
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ description = "Testcontainers :: Dynalite (deprecated)"
33
dependencies {
44
api project(':testcontainers')
55

6-
compileOnly 'com.amazonaws:aws-java-sdk-dynamodb:1.12.609'
7-
testImplementation 'com.amazonaws:aws-java-sdk-dynamodb:1.12.609'
6+
compileOnly 'com.amazonaws:aws-java-sdk-dynamodb:1.12.643'
7+
testImplementation 'com.amazonaws:aws-java-sdk-dynamodb:1.12.643'
88
testImplementation 'org.assertj:assertj-core:3.24.2'
99
}

modules/elasticsearch/build.gradle

+1-1
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:8.11.2"
6-
testImplementation "org.elasticsearch.client:transport:7.17.15"
6+
testImplementation "org.elasticsearch.client:transport:7.17.17"
77
testImplementation 'org.assertj:assertj-core:3.24.2'
88
}

modules/gcloud/build.gradle

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,5 +10,5 @@ dependencies {
1010
testImplementation 'com.google.cloud:google-cloud-pubsub'
1111
testImplementation 'com.google.cloud:google-cloud-spanner'
1212
testImplementation 'com.google.cloud:google-cloud-bigtable'
13-
testImplementation 'org.assertj:assertj-core:3.24.2'
13+
testImplementation 'org.assertj:assertj-core:3.25.1'
1414
}

modules/hivemq/build.gradle

+3-3
Original file line numberDiff line numberDiff line change
@@ -6,18 +6,18 @@ dependencies {
66

77
shaded("org.apache.commons:commons-lang3:3.14.0")
88
shaded("commons-io:commons-io:2.15.1")
9-
shaded("org.javassist:javassist:3.29.2-GA")
9+
shaded("org.javassist:javassist:3.30.2-GA")
1010
shaded("org.jboss.shrinkwrap:shrinkwrap-api:1.2.6")
1111
shaded("org.jboss.shrinkwrap:shrinkwrap-impl-base:1.2.6")
1212
shaded("net.lingala.zip4j:zip4j:2.11.5")
1313

1414
testImplementation("org.junit.jupiter:junit-jupiter-api:5.10.1")
1515
testImplementation(project(":junit-jupiter"))
16-
testImplementation("com.hivemq:hivemq-extension-sdk:4.23.0")
16+
testImplementation("com.hivemq:hivemq-extension-sdk:4.24.0")
1717
testImplementation("com.hivemq:hivemq-mqtt-client:1.3.3")
1818
testImplementation("org.apache.httpcomponents:httpclient:4.5.14")
1919
testImplementation("ch.qos.logback:logback-classic:1.4.14")
20-
testImplementation 'org.assertj:assertj-core:3.24.2'
20+
testImplementation 'org.assertj:assertj-core:3.25.1'
2121
testRuntimeOnly("org.junit.jupiter:junit-jupiter-engine:5.10.1")
2222
}
2323

modules/influxdb/build.gradle

+2-2
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ dependencies {
55

66
compileOnly 'org.influxdb:influxdb-java:2.23'
77

8-
testImplementation 'org.assertj:assertj-core:3.24.2'
8+
testImplementation 'org.assertj:assertj-core:3.25.1'
99
testImplementation 'org.influxdb:influxdb-java:2.23'
10-
testImplementation "com.influxdb:influxdb-client-java:6.11.0"
10+
testImplementation "com.influxdb:influxdb-client-java:6.12.0"
1111
}

modules/jdbc-test/build.gradle

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11
dependencies {
22
api project(':jdbc')
33

4-
api 'com.google.guava:guava:32.1.3-jre'
4+
api 'com.google.guava:guava:33.0.0-jre'
55
api 'org.apache.commons:commons-lang3:3.14.0'
66
api 'com.zaxxer:HikariCP-java6:2.3.13'
77
api 'commons-dbutils:commons-dbutils:1.8.1'
88

99
api 'com.googlecode.junit-toolbox:junit-toolbox:2.4'
1010

11-
api 'org.assertj:assertj-core:3.24.2'
11+
api 'org.assertj:assertj-core:3.25.1'
1212

1313
api 'org.apache.tomcat:tomcat-jdbc:10.0.27'
1414
api 'org.vibur:vibur-dbcp:25.0'

modules/jdbc/build.gradle

+2-2
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,9 @@ dependencies {
66
compileOnly 'org.jetbrains:annotations:24.1.0'
77
testImplementation 'commons-dbutils:commons-dbutils:1.8.1'
88
testImplementation 'org.vibur:vibur-dbcp:25.0'
9-
testImplementation 'org.apache.tomcat:tomcat-jdbc:10.1.16'
9+
testImplementation 'org.apache.tomcat:tomcat-jdbc:10.1.18'
1010
testImplementation 'com.zaxxer:HikariCP-java6:2.3.13'
11-
testImplementation 'org.assertj:assertj-core:3.24.2'
11+
testImplementation 'org.assertj:assertj-core:3.25.1'
1212
testImplementation ('org.mockito:mockito-core:4.11.0') {
1313
exclude(module: 'hamcrest-core')
1414
}

modules/junit-jupiter/build.gradle

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ dependencies {
1313
testImplementation ('org.mockito:mockito-core:4.11.0') {
1414
exclude(module: 'hamcrest-core')
1515
}
16-
testImplementation 'org.assertj:assertj-core:3.24.2'
16+
testImplementation 'org.assertj:assertj-core:3.25.1'
1717
testImplementation 'org.junit.jupiter:junit-jupiter'
1818

1919
testRuntimeOnly 'org.postgresql:postgresql:42.7.1'

modules/k3s/build.gradle

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ dependencies {
88
// Any >2.8 version here is not compatible with jackson-databind 2.8.x.
99
shaded 'com.fasterxml.jackson.dataformat:jackson-dataformat-yaml:2.8.8'
1010

11-
testImplementation 'io.fabric8:kubernetes-client:6.9.2'
11+
testImplementation 'io.fabric8:kubernetes-client:6.10.0'
1212
testImplementation 'io.kubernetes:client-java:19.0.0'
1313
testImplementation 'org.assertj:assertj-core:3.24.2'
1414
}

modules/localstack/build.gradle

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,6 @@ dependencies {
77
testImplementation 'com.amazonaws:aws-java-sdk-s3'
88
testImplementation 'com.amazonaws:aws-java-sdk-sqs'
99
testImplementation 'com.amazonaws:aws-java-sdk-logs'
10-
testImplementation 'software.amazon.awssdk:s3:2.21.43'
10+
testImplementation 'software.amazon.awssdk:s3:2.23.9'
1111
testImplementation 'org.assertj:assertj-core:3.24.2'
1212
}

modules/mariadb/build.gradle

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ dependencies {
1010
compileOnly 'org.mariadb:r2dbc-mariadb:1.0.3'
1111

1212
testImplementation project(':jdbc-test')
13-
testImplementation 'org.mariadb.jdbc:mariadb-java-client:3.3.1'
13+
testImplementation 'org.mariadb.jdbc:mariadb-java-client:3.3.2'
1414

1515
testImplementation testFixtures(project(':r2dbc'))
1616
testRuntimeOnly 'org.mariadb:r2dbc-mariadb:1.0.3'

modules/minio/build.gradle

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,5 +4,5 @@ dependencies {
44
api project(':testcontainers')
55

66
testImplementation("io.minio:minio:8.5.7")
7-
testImplementation 'org.assertj:assertj-core:3.24.2'
7+
testImplementation 'org.assertj:assertj-core:3.25.1'
88
}

modules/mockserver/build.gradle

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,5 +4,5 @@ dependencies {
44
api project(':testcontainers')
55

66
testImplementation 'org.mock-server:mockserver-client-java:5.15.0'
7-
testImplementation 'org.assertj:assertj-core:3.24.2'
7+
testImplementation 'org.assertj:assertj-core:3.25.1'
88
}

modules/mysql/build.gradle

+2-2
Original file line numberDiff line numberDiff line change
@@ -7,13 +7,13 @@ dependencies {
77
api project(':jdbc')
88

99
compileOnly project(':r2dbc')
10-
compileOnly 'io.asyncer:r2dbc-mysql:1.0.5'
10+
compileOnly 'io.asyncer:r2dbc-mysql:1.0.6'
1111

1212
testImplementation project(':jdbc-test')
1313
testRuntimeOnly 'mysql:mysql-connector-java:8.0.33'
1414

1515
testImplementation testFixtures(project(':r2dbc'))
16-
testRuntimeOnly 'io.asyncer:r2dbc-mysql:1.0.5'
16+
testRuntimeOnly 'io.asyncer:r2dbc-mysql:1.0.6'
1717

1818
compileOnly 'org.jetbrains:annotations:24.1.0'
1919
}

modules/neo4j/build.gradle

+1-1
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,6 @@ dependencies {
3333

3434
api project(":testcontainers")
3535

36-
testImplementation 'org.neo4j.driver:neo4j-java-driver:4.4.12'
36+
testImplementation 'org.neo4j.driver:neo4j-java-driver:4.4.13'
3737
testImplementation 'org.assertj:assertj-core:3.24.2'
3838
}

modules/nginx/build.gradle

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,5 +3,5 @@ description = "Testcontainers :: Nginx"
33
dependencies {
44
api project(':testcontainers')
55
compileOnly 'org.jetbrains:annotations:24.1.0'
6-
testImplementation 'org.assertj:assertj-core:3.24.2'
6+
testImplementation 'org.assertj:assertj-core:3.25.1'
77
}

modules/orientdb/build.gradle

+3-3
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,9 @@ description = "Testcontainers :: Orientdb"
33
dependencies {
44
api project(":testcontainers")
55

6-
api "com.orientechnologies:orientdb-client:3.2.25"
6+
api "com.orientechnologies:orientdb-client:3.2.26"
77

8-
testImplementation 'org.assertj:assertj-core:3.24.2'
8+
testImplementation 'org.assertj:assertj-core:3.25.1'
99
testImplementation 'org.apache.tinkerpop:gremlin-driver:3.7.1'
10-
testImplementation "com.orientechnologies:orientdb-gremlin:3.2.25"
10+
testImplementation "com.orientechnologies:orientdb-gremlin:3.2.26"
1111
}

modules/pulsar/build.gradle

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,6 @@ dependencies {
44
api project(':testcontainers')
55

66
testImplementation group: 'org.apache.pulsar', name: 'pulsar-client', version: '3.1.1'
7-
testImplementation group: 'org.assertj', name: 'assertj-core', version: '3.24.2'
7+
testImplementation group: 'org.assertj', name: 'assertj-core', version: '3.25.1'
88
testImplementation group: 'org.apache.pulsar', name: 'pulsar-client-admin', version: '3.1.1'
99
}

modules/questdb/build.gradle

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ dependencies {
77
testRuntimeOnly 'org.postgresql:postgresql:42.7.1'
88
testImplementation project(':jdbc-test')
99
testImplementation 'org.assertj:assertj-core:3.24.2'
10-
testImplementation 'org.questdb:questdb:7.3.7'
10+
testImplementation 'org.questdb:questdb:7.3.9'
1111
testImplementation 'org.awaitility:awaitility:4.2.0'
1212
testImplementation 'org.apache.httpcomponents:httpclient:4.5.14'
1313
}

modules/r2dbc/build.gradle

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,6 @@ dependencies {
1515
testImplementation 'io.r2dbc:r2dbc-postgresql:0.8.13.RELEASE'
1616
testImplementation project(':postgresql')
1717

18-
testFixturesImplementation 'io.projectreactor:reactor-core:3.6.0'
18+
testFixturesImplementation 'io.projectreactor:reactor-core:3.6.2'
1919
testFixturesImplementation 'org.assertj:assertj-core:3.24.2'
2020
}

modules/redpanda/build.gradle

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,6 @@ dependencies {
55
shaded 'org.freemarker:freemarker:2.3.32'
66

77
testImplementation 'org.apache.kafka:kafka-clients:3.6.1'
8-
testImplementation 'org.assertj:assertj-core:3.24.2'
8+
testImplementation 'org.assertj:assertj-core:3.25.1'
99
testImplementation 'io.rest-assured:rest-assured:5.4.0'
1010
}

modules/selenium/build.gradle

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ dependencies {
1313

1414
testImplementation 'org.mortbay.jetty:jetty:6.1.26'
1515
testImplementation project(':nginx')
16-
testImplementation 'org.assertj:assertj-core:3.24.2'
16+
testImplementation 'org.assertj:assertj-core:3.25.1'
1717

1818
compileOnly 'org.jetbrains:annotations:24.1.0'
1919
}

modules/solace/build.gradle

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ dependencies {
55

66
shaded 'org.awaitility:awaitility:4.2.0'
77

8-
testImplementation 'org.assertj:assertj-core:3.24.2'
8+
testImplementation 'org.assertj:assertj-core:3.25.1'
99
testImplementation 'com.solacesystems:sol-jcsmp:10.21.0'
1010
testImplementation 'org.apache.qpid:qpid-jms-client:0.61.0'
1111
testImplementation 'org.eclipse.paho:org.eclipse.paho.client.mqttv3:1.2.5'

modules/solr/build.gradle

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,5 +6,5 @@ dependencies {
66
shaded 'com.squareup.okhttp3:okhttp:4.12.0'
77

88
testImplementation 'org.apache.solr:solr-solrj:8.11.2'
9-
testImplementation 'org.assertj:assertj-core:3.24.2'
9+
testImplementation 'org.assertj:assertj-core:3.25.1'
1010
}

modules/toxiproxy/build.gradle

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,5 +5,5 @@ dependencies {
55
api 'eu.rekawek.toxiproxy:toxiproxy-java:2.1.7'
66

77
testImplementation 'redis.clients:jedis:3.0.1'
8-
testImplementation 'org.assertj:assertj-core:3.24.2'
8+
testImplementation 'org.assertj:assertj-core:3.25.1'
99
}

0 commit comments

Comments
 (0)