Skip to content

Commit

Permalink
Merge pull request #9284 from testcontainers/combined-pr-branch
Browse files Browse the repository at this point in the history
Combined dependencies PR
  • Loading branch information
eddumelendez authored Sep 24, 2024
2 parents 751aa4e + 583215b commit 5328bca
Show file tree
Hide file tree
Showing 64 changed files with 77 additions and 77 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/moby-latest.yml
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ jobs:
- name: Notify to Slack on failures
if: failure()
id: slack
uses: slackapi/slack-github-action@v1.26.0
uses: slackapi/slack-github-action@v1.27.0
with:
payload: |
{
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/update-docs-version.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ jobs:
sed -i "s/latest_version: .*/latest_version: ${GITHUB_REF##*/}/g" mkdocs.yml
git diff
- name: Create Pull Request
uses: peter-evans/create-pull-request@c5a7806660adbe173f04e3e038b0ccdcd758773c # v3.10.1
uses: peter-evans/create-pull-request@5e914681df9dc83aa4e4905692ca88beb2f9e91f # v3.10.1
with:
title: Update docs version to ${GITHUB_REF##*/}
body: |
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/update-gradle-wrapper.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
- uses: actions/checkout@v4

- name: Update Gradle Wrapper
uses: gradle-update/update-gradle-wrapper-action@0407394b9d173dfc9cf5695f9f560fef6d61a5fe # v1.0.13
uses: gradle-update/update-gradle-wrapper-action@9268373d69bd0974b6318eb3b512b8e025060bbe # v1.0.13
with:
repo-token: ${{ secrets.GITHUB_TOKEN }}
labels: dependencies
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/update-testcontainers-version.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ jobs:
sed -i "s/^testcontainers\.version=.*/testcontainers\.version=${GITHUB_REF##*/}/g" gradle.properties
git diff
- name: Create Pull Request
uses: peter-evans/create-pull-request@c5a7806660adbe173f04e3e038b0ccdcd758773c # v3.10.1
uses: peter-evans/create-pull-request@5e914681df9dc83aa4e4905692ca88beb2f9e91f # v3.10.1
with:
title: Update testcontainers version to ${GITHUB_REF##*/}
body: |
Expand Down
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ buildscript {

dependencies {
// https:/melix/japicmp-gradle-plugin/issues/36
classpath 'com.google.guava:guava:33.2.1-jre'
classpath 'com.google.guava:guava:33.3.1-jre'
classpath 'com.github.tjni.captainhook:captain-hook:0.1.5'
}
}
Expand Down
4 changes: 2 additions & 2 deletions core/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@ dependencies {

api 'com.github.docker-java:docker-java-transport-zerodep'

shaded 'com.google.guava:guava:33.2.1-jre'
shaded 'com.google.guava:guava:33.3.1-jre'
shaded "org.yaml:snakeyaml:1.33"

shaded 'org.glassfish.main.external:trilead-ssh2-repackaged:4.1.2'
Expand All @@ -111,7 +111,7 @@ dependencies {
}
testImplementation 'org.apache.httpcomponents:httpclient:4.5.14'
testImplementation 'redis.clients:jedis:5.1.3'
testImplementation 'com.rabbitmq:amqp-client:5.21.0'
testImplementation 'com.rabbitmq:amqp-client:5.22.0'
testImplementation 'org.mongodb:mongo-java-driver:3.12.14'

testImplementation ('org.mockito:mockito-core:4.11.0') {
Expand Down
2 changes: 1 addition & 1 deletion docs/examples/junit4/generic/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ dependencies {
testImplementation project(":mysql")

testRuntimeOnly 'mysql:mysql-connector-java:8.0.33'
testImplementation "org.seleniumhq.selenium:selenium-api:4.22.0"
testImplementation "org.seleniumhq.selenium:selenium-api:4.25.0"
testImplementation 'org.assertj:assertj-core:3.26.3'
}

Expand Down
2 changes: 1 addition & 1 deletion docs/examples/junit4/redis/build.gradle
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
description = "Examples for docs"

dependencies {
api "io.lettuce:lettuce-core:6.3.2.RELEASE"
api "io.lettuce:lettuce-core:6.4.0.RELEASE"

testImplementation "junit:junit:4.13.2"
testImplementation project(":testcontainers")
Expand Down
6 changes: 3 additions & 3 deletions docs/examples/junit5/redis/build.gradle
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
description = "Examples for docs"

dependencies {
api "io.lettuce:lettuce-core:6.3.2.RELEASE"
api "io.lettuce:lettuce-core:6.4.0.RELEASE"

testImplementation "org.junit.jupiter:junit-jupiter-api:5.10.3"
testImplementation "org.junit.jupiter:junit-jupiter-api:5.11.0"
testImplementation "org.junit.jupiter:junit-jupiter-params:5.10.3"
testRuntimeOnly "org.junit.jupiter:junit-jupiter-engine:5.10.3"
testRuntimeOnly "org.junit.jupiter:junit-jupiter-engine:5.11.0"
testImplementation project(":testcontainers")
testImplementation project(":junit-jupiter")
testImplementation 'org.assertj:assertj-core:3.26.3'
Expand Down
2 changes: 1 addition & 1 deletion docs/examples/spock/redis/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ plugins {
}

dependencies {
api "io.lettuce:lettuce-core:6.3.2.RELEASE"
api "io.lettuce:lettuce-core:6.4.0.RELEASE"
testImplementation 'org.spockframework:spock-core:2.3-groovy-4.0'
testImplementation project(":spock")
testImplementation 'ch.qos.logback:logback-classic:1.3.14'
Expand Down
2 changes: 1 addition & 1 deletion examples/cucumber/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ repositories {
}

dependencies {
implementation platform('org.seleniumhq.selenium:selenium-bom:4.21.0')
implementation platform('org.seleniumhq.selenium:selenium-bom:4.25.0')
implementation 'org.seleniumhq.selenium:selenium-remote-driver'
implementation 'org.seleniumhq.selenium:selenium-firefox-driver'
implementation 'org.seleniumhq.selenium:selenium-chrome-driver'
Expand Down
2 changes: 1 addition & 1 deletion examples/hazelcast/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ dependencies {
testImplementation 'com.hazelcast:hazelcast:5.3.8'
testImplementation 'ch.qos.logback:logback-classic:1.3.14'
testImplementation 'org.assertj:assertj-core:3.26.3'
testImplementation 'org.junit.jupiter:junit-jupiter:5.10.3'
testImplementation 'org.junit.jupiter:junit-jupiter:5.11.0'
}

test {
Expand Down
2 changes: 1 addition & 1 deletion examples/immudb/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ dependencies {
testImplementation 'org.assertj:assertj-core:3.26.3'
testImplementation 'com.google.guava:guava:23.0'
testImplementation 'ch.qos.logback:logback-classic:1.3.14'
testImplementation 'org.junit.jupiter:junit-jupiter:5.10.3'
testImplementation 'org.junit.jupiter:junit-jupiter:5.11.0'
}

test {
Expand Down
2 changes: 1 addition & 1 deletion examples/kafka-cluster/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ dependencies {
testImplementation 'org.assertj:assertj-core:3.26.3'
testImplementation 'com.google.guava:guava:23.0'
testImplementation 'ch.qos.logback:logback-classic:1.3.14'
testImplementation 'org.junit.jupiter:junit-jupiter:5.10.3'
testImplementation 'org.junit.jupiter:junit-jupiter:5.11.0'
}

test {
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.36'
implementation 'com.squareup.okhttp3:okhttp:4.12.0'
implementation 'org.json:json:20240303'
testRuntimeOnly 'org.postgresql:postgresql:42.7.3'
testRuntimeOnly 'org.postgresql:postgresql:42.7.4'
testImplementation 'ch.qos.logback:logback-classic:1.3.14'
testImplementation 'org.testcontainers:postgresql'
testImplementation 'org.assertj:assertj-core:3.26.3'
Expand Down
4 changes: 2 additions & 2 deletions examples/nats/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -9,10 +9,10 @@ repositories {
dependencies {
testImplementation 'org.assertj:assertj-core:3.26.3'
testImplementation 'org.testcontainers:testcontainers'
testImplementation 'io.nats:jnats:2.19.1'
testImplementation 'io.nats:jnats:2.20.2'
testImplementation 'ch.qos.logback:logback-classic:1.3.14'
testImplementation 'org.apache.httpcomponents:httpclient:4.5.14'
testImplementation 'org.junit.jupiter:junit-jupiter:5.10.3'
testImplementation 'org.junit.jupiter:junit-jupiter:5.11.0'
}

test {
Expand Down
2 changes: 1 addition & 1 deletion examples/neo4j-container/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -11,5 +11,5 @@ dependencies {
testImplementation 'org.neo4j.driver:neo4j-java-driver:4.4.18'
testImplementation 'org.testcontainers:neo4j'
testImplementation 'org.testcontainers:junit-jupiter'
testImplementation 'org.junit.jupiter:junit-jupiter:5.10.3'
testImplementation 'org.junit.jupiter:junit-jupiter:5.11.0'
}
2 changes: 1 addition & 1 deletion examples/ollama-hugging-face/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ dependencies {
testImplementation 'org.testcontainers:ollama'
testImplementation 'org.assertj:assertj-core:3.26.3'
testImplementation 'ch.qos.logback:logback-classic:1.3.14'
testImplementation 'org.junit.jupiter:junit-jupiter:5.10.3'
testImplementation 'org.junit.jupiter:junit-jupiter:5.11.0'
testImplementation 'io.rest-assured:rest-assured:5.5.0'
}

Expand Down
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.36'
implementation 'redis.clients:jedis:5.1.3'
implementation 'redis.clients:jedis:5.1.5'
implementation 'com.google.code.gson:gson:2.11.0'
implementation 'com.google.guava:guava:23.0'
testImplementation 'org.testcontainers:testcontainers'
Expand Down
4 changes: 2 additions & 2 deletions examples/redis-backed-cache/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -8,12 +8,12 @@ repositories {

dependencies {
compileOnly 'org.slf4j:slf4j-api:1.7.36'
implementation 'redis.clients:jedis:5.1.3'
implementation 'redis.clients:jedis:5.1.5'
implementation 'com.google.code.gson:gson:2.11.0'
implementation 'com.google.guava:guava:23.0'
testImplementation 'org.testcontainers:testcontainers'
testImplementation 'org.testcontainers:junit-jupiter'
testImplementation 'org.junit.jupiter:junit-jupiter:5.10.3'
testImplementation 'org.junit.jupiter:junit-jupiter:5.11.0'
testImplementation 'ch.qos.logback:logback-classic:1.3.14'
testImplementation 'org.assertj:assertj-core:3.26.3'
}
Expand Down
2 changes: 1 addition & 1 deletion examples/selenium-container/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ dependencies {
testImplementation 'org.testcontainers:selenium'
testImplementation 'org.testcontainers:junit-jupiter'
testImplementation 'org.assertj:assertj-core:3.26.3'
testImplementation 'org.junit.jupiter:junit-jupiter:5.10.3'
testImplementation 'org.junit.jupiter:junit-jupiter:5.11.0'
}

test {
Expand Down
2 changes: 1 addition & 1 deletion examples/sftp/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ dependencies {
testImplementation 'org.testcontainers:testcontainers'
testImplementation 'org.assertj:assertj-core:3.26.3'
testImplementation 'ch.qos.logback:logback-classic:1.3.14'
testImplementation 'org.junit.jupiter:junit-jupiter:5.10.3'
testImplementation 'org.junit.jupiter:junit-jupiter:5.11.0'
}

test {
Expand Down
4 changes: 2 additions & 2 deletions examples/singleton-container/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -8,15 +8,15 @@ repositories {

dependencies {

implementation 'redis.clients:jedis:5.1.3'
implementation 'redis.clients:jedis:5.1.5'
implementation 'com.google.code.gson:gson:2.11.0'
implementation 'com.google.guava:guava:23.0'
compileOnly 'org.slf4j:slf4j-api:1.7.36'

testImplementation 'ch.qos.logback:logback-classic:1.3.14'
testImplementation 'org.testcontainers:testcontainers'
testImplementation 'org.assertj:assertj-core:3.26.3'
testImplementation 'org.junit.jupiter:junit-jupiter:5.10.3'
testImplementation 'org.junit.jupiter:junit-jupiter:5.11.0'
}

test {
Expand Down
2 changes: 1 addition & 1 deletion examples/solr-container/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ dependencies {
testImplementation 'org.testcontainers:testcontainers'
testImplementation 'org.testcontainers:solr'
testImplementation 'org.assertj:assertj-core:3.26.3'
testImplementation 'org.junit.jupiter:junit-jupiter:5.10.3'
testImplementation 'org.junit.jupiter:junit-jupiter:5.11.0'
}

test {
Expand Down
2 changes: 1 addition & 1 deletion examples/spring-boot/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ dependencies {
runtimeOnly 'org.postgresql:postgresql'
testImplementation 'org.springframework.boot:spring-boot-starter-test'
testImplementation 'org.testcontainers:postgresql'
testImplementation 'org.junit.jupiter:junit-jupiter:5.10.3'
testImplementation 'org.junit.jupiter:junit-jupiter:5.11.0'
}

test {
Expand Down
2 changes: 1 addition & 1 deletion examples/zookeeper/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ dependencies {
testImplementation 'org.testcontainers:testcontainers'
testImplementation 'org.assertj:assertj-core:3.26.3'
testImplementation 'ch.qos.logback:logback-classic:1.3.14'
testImplementation 'org.junit.jupiter:junit-jupiter:5.10.3'
testImplementation 'org.junit.jupiter:junit-jupiter:5.11.0'
}

test {
Expand Down
2 changes: 1 addition & 1 deletion modules/activemq/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ dependencies {

testImplementation 'org.assertj:assertj-core:3.26.3'
testImplementation "org.apache.activemq:activemq-client:6.1.2"
testImplementation "org.apache.activemq:artemis-jakarta-client:2.35.0"
testImplementation "org.apache.activemq:artemis-jakarta-client:2.37.0"
}

test {
Expand Down
2 changes: 1 addition & 1 deletion modules/azure/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -6,5 +6,5 @@ dependencies {
shaded 'com.squareup.okhttp3:okhttp:4.12.0'

testImplementation 'org.assertj:assertj-core:3.26.3'
testImplementation 'com.azure:azure-cosmos:4.62.0'
testImplementation 'com.azure:azure-cosmos:4.63.3'
}
2 changes: 1 addition & 1 deletion modules/cockroachdb/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,6 @@ dependencies {
api project(':jdbc')

testImplementation project(':jdbc-test')
testRuntimeOnly 'org.postgresql:postgresql:42.7.3'
testRuntimeOnly 'org.postgresql:postgresql:42.7.4'
testImplementation 'org.assertj:assertj-core:3.26.3'
}
2 changes: 1 addition & 1 deletion modules/couchbase/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ dependencies {
// TODO use JDK's HTTP client and/or Apache HttpClient5
shaded 'com.squareup.okhttp3:okhttp:4.12.0'

testImplementation 'com.couchbase.client:java-client:3.7.1'
testImplementation 'com.couchbase.client:java-client:3.7.3'
testImplementation 'org.awaitility:awaitility:4.2.0'
testImplementation 'org.assertj:assertj-core:3.26.3'
}
2 changes: 1 addition & 1 deletion modules/databend/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,6 @@ dependencies {
api project(':jdbc')

testImplementation project(':jdbc-test')
testRuntimeOnly 'com.databend:databend-jdbc:0.2.9'
testRuntimeOnly 'com.databend:databend-jdbc:0.3.2'
testImplementation 'org.assertj:assertj-core:3.26.3'
}
4 changes: 2 additions & 2 deletions modules/dynalite/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ description = "Testcontainers :: Dynalite (deprecated)"
dependencies {
api project(':testcontainers')

compileOnly 'com.amazonaws:aws-java-sdk-dynamodb:1.12.765'
testImplementation 'com.amazonaws:aws-java-sdk-dynamodb:1.12.765'
compileOnly 'com.amazonaws:aws-java-sdk-dynamodb:1.12.772'
testImplementation 'com.amazonaws:aws-java-sdk-dynamodb:1.12.772'
testImplementation 'org.assertj:assertj-core:3.26.3'
}
2 changes: 1 addition & 1 deletion modules/elasticsearch/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,6 @@ description = "Testcontainers :: elasticsearch"
dependencies {
api project(':testcontainers')
testImplementation "org.elasticsearch.client:elasticsearch-rest-client:8.14.3"
testImplementation "org.elasticsearch.client:transport:7.17.22"
testImplementation "org.elasticsearch.client:transport:7.17.24"
testImplementation 'org.assertj:assertj-core:3.26.3'
}
2 changes: 1 addition & 1 deletion modules/grafana/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ dependencies {

testImplementation 'org.assertj:assertj-core:3.26.3'
testImplementation 'io.rest-assured:rest-assured:5.5.0'
testImplementation 'io.micrometer:micrometer-registry-otlp:1.13.2'
testImplementation 'io.micrometer:micrometer-registry-otlp:1.13.4'
testImplementation 'uk.org.webcompere:system-stubs-junit4:2.1.6'
}

Expand Down
6 changes: 3 additions & 3 deletions modules/hivemq/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -5,18 +5,18 @@ dependencies {
api("org.jetbrains:annotations:24.1.0")

shaded("org.apache.commons:commons-lang3:3.15.0")
shaded("commons-io:commons-io:2.16.1")
shaded("commons-io:commons-io:2.17.0")
shaded("org.javassist:javassist:3.30.2-GA")
shaded("org.jboss.shrinkwrap:shrinkwrap-api:1.2.6")
shaded("org.jboss.shrinkwrap:shrinkwrap-impl-base:1.2.6")
shaded("net.lingala.zip4j:zip4j:2.11.5")

testImplementation("org.junit.jupiter:junit-jupiter:5.10.3")
testImplementation(project(":junit-jupiter"))
testImplementation("com.hivemq:hivemq-extension-sdk:4.30.0")
testImplementation("com.hivemq:hivemq-extension-sdk:4.32.0")
testImplementation("com.hivemq:hivemq-mqtt-client:1.3.3")
testImplementation("org.apache.httpcomponents:httpclient:4.5.14")
testImplementation("ch.qos.logback:logback-classic:1.5.6")
testImplementation("ch.qos.logback:logback-classic:1.5.8")
testImplementation 'org.assertj:assertj-core:3.26.3'
}

Expand Down
2 changes: 1 addition & 1 deletion modules/jdbc-test/build.gradle
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
dependencies {
api project(':jdbc')

api 'com.google.guava:guava:33.2.1-jre'
api 'com.google.guava:guava:33.3.1-jre'
api 'org.apache.commons:commons-lang3:3.15.0'
api 'com.zaxxer:HikariCP-java6:2.3.13'
api 'commons-dbutils:commons-dbutils:1.8.1'
Expand Down
2 changes: 1 addition & 1 deletion modules/jdbc/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ dependencies {
compileOnly 'org.jetbrains:annotations:24.1.0'
testImplementation 'commons-dbutils:commons-dbutils:1.8.1'
testImplementation 'org.vibur:vibur-dbcp:25.0'
testImplementation 'org.apache.tomcat:tomcat-jdbc:10.1.26'
testImplementation 'org.apache.tomcat:tomcat-jdbc:10.1.30'
testImplementation 'com.zaxxer:HikariCP-java6:2.3.13'
testImplementation 'org.assertj:assertj-core:3.26.3'
testImplementation ('org.mockito:mockito-core:4.11.0') {
Expand Down
4 changes: 2 additions & 2 deletions modules/junit-jupiter/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -8,15 +8,15 @@ dependencies {
testImplementation project(':mysql')
testImplementation project(':postgresql')
testImplementation 'com.zaxxer:HikariCP:4.0.3'
testImplementation 'redis.clients:jedis:5.1.3'
testImplementation 'redis.clients:jedis:5.1.5'
testImplementation 'org.apache.httpcomponents:httpclient:4.5.14'
testImplementation ('org.mockito:mockito-core:4.11.0') {
exclude(module: 'hamcrest-core')
}
testImplementation 'org.assertj:assertj-core:3.26.3'
testImplementation 'org.junit.jupiter:junit-jupiter'

testRuntimeOnly 'org.postgresql:postgresql:42.7.3'
testRuntimeOnly 'org.postgresql:postgresql:42.7.4'
testRuntimeOnly 'mysql:mysql-connector-java:8.0.33'
}

Expand Down
2 changes: 1 addition & 1 deletion modules/k3s/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,6 @@ dependencies {
shaded 'com.fasterxml.jackson.dataformat:jackson-dataformat-yaml:2.8.8'

testImplementation 'io.fabric8:kubernetes-client:6.13.1'
testImplementation 'io.kubernetes:client-java:21.0.0-legacy'
testImplementation 'io.kubernetes:client-java:21.0.1-legacy'
testImplementation 'org.assertj:assertj-core:3.26.3'
}
Loading

0 comments on commit 5328bca

Please sign in to comment.