Skip to content

Commit

Permalink
Merge pull request #9002 from testcontainers/combined-pr-branch
Browse files Browse the repository at this point in the history
Combined dependencies PR
  • Loading branch information
eddumelendez authored Jul 26, 2024
2 parents af27853 + 33fa288 commit e9a408b
Show file tree
Hide file tree
Showing 48 changed files with 54 additions and 54 deletions.
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ buildscript {
plugins {
id 'io.franzbecker.gradle-lombok' version '5.0.0'
id 'com.github.johnrengelman.shadow' version '8.1.1'
id 'me.champeau.gradle.japicmp' version '0.4.2' apply false
id 'me.champeau.gradle.japicmp' version '0.4.3' apply false
id 'com.diffplug.spotless' version '6.13.0' apply false
}

Expand Down
4 changes: 2 additions & 2 deletions core/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -120,13 +120,13 @@ dependencies {
// Synthetic JAR used for MountableFileTest and DirectoryTarResourceTest
testImplementation files('testlib/repo/fakejar/fakejar/0/fakejar-0.jar')

testImplementation 'org.assertj:assertj-core:3.25.3'
testImplementation 'org.assertj:assertj-core:3.26.3'
testImplementation 'io.rest-assured:rest-assured:5.5.0'

jarFileTestCompileOnly "org.projectlombok:lombok:${lombok.version}"
jarFileTestAnnotationProcessor "org.projectlombok:lombok:${lombok.version}"
jarFileTestImplementation 'junit:junit:4.13.2'
jarFileTestImplementation 'org.assertj:assertj-core:3.25.3'
jarFileTestImplementation 'org.assertj:assertj-core:3.26.3'
jarFileTestImplementation 'org.ow2.asm:asm-debug-all:5.2'
}

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 @@ -8,7 +8,7 @@ dependencies {

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

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

testImplementation "junit:junit:4.13.2"
testImplementation project(":testcontainers")
testImplementation 'org.assertj:assertj-core:3.25.3'
testImplementation 'org.assertj:assertj-core:3.26.3'
}
4 changes: 2 additions & 2 deletions docs/examples/junit5/redis/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -3,12 +3,12 @@ description = "Examples for docs"
dependencies {
api "io.lettuce:lettuce-core:6.3.1.RELEASE"

testImplementation "org.junit.jupiter:junit-jupiter-api:5.10.2"
testImplementation "org.junit.jupiter:junit-jupiter-api:5.10.3"
testImplementation "org.junit.jupiter:junit-jupiter-params:5.10.2"
testRuntimeOnly "org.junit.jupiter:junit-jupiter-engine:5.10.3"
testImplementation project(":testcontainers")
testImplementation project(":junit-jupiter")
testImplementation 'org.assertj:assertj-core:3.25.3'
testImplementation 'org.assertj:assertj-core:3.26.3'
}

test {
Expand Down
2 changes: 1 addition & 1 deletion examples/cucumber/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ dependencies {
testImplementation 'io.cucumber:cucumber-java'
testImplementation 'io.cucumber:cucumber-junit'
testImplementation 'org.testcontainers:selenium'
testImplementation 'org.assertj:assertj-core:3.25.3'
testImplementation 'org.assertj:assertj-core:3.26.3'
}

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

Expand Down
2 changes: 1 addition & 1 deletion examples/immudb/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ dependencies {
implementation 'io.codenotary:immudb4j:1.0.1'
testImplementation 'org.testcontainers:testcontainers'
testImplementation 'org.testcontainers:junit-jupiter'
testImplementation 'org.assertj:assertj-core:3.25.3'
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.2'
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 @@ -11,7 +11,7 @@ dependencies {
testAnnotationProcessor "org.projectlombok:lombok:1.18.30"
testImplementation 'org.testcontainers:kafka'
testImplementation 'org.apache.kafka:kafka-clients:3.6.1'
testImplementation 'org.assertj:assertj-core:3.25.3'
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.2'
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 @@ -12,6 +12,6 @@ dependencies {
testRuntimeOnly 'org.postgresql:postgresql:42.7.1'
testImplementation 'ch.qos.logback:logback-classic:1.3.14'
testImplementation 'org.testcontainers:postgresql'
testImplementation 'org.assertj:assertj-core:3.25.3'
testImplementation 'org.assertj:assertj-core:3.26.3'
}

2 changes: 1 addition & 1 deletion examples/nats/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ repositories {
}

dependencies {
testImplementation 'org.assertj:assertj-core:3.25.3'
testImplementation 'org.assertj:assertj-core:3.26.3'
testImplementation 'org.testcontainers:testcontainers'
testImplementation 'io.nats:jnats:2.18.1'
testImplementation 'ch.qos.logback:logback-classic:1.3.14'
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 @@ -7,7 +7,7 @@ repositories {
}

dependencies {
testImplementation 'org.assertj:assertj-core:3.25.3'
testImplementation 'org.assertj:assertj-core:3.26.3'
testImplementation 'org.neo4j.driver:neo4j-java-driver:4.4.13'
testImplementation 'org.testcontainers:neo4j'
testImplementation 'org.testcontainers:junit-jupiter'
Expand Down
2 changes: 1 addition & 1 deletion examples/ollama-hugging-face/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ repositories {

dependencies {
testImplementation 'org.testcontainers:ollama'
testImplementation 'org.assertj:assertj-core:3.25.3'
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.2'
testImplementation 'io.rest-assured:rest-assured:5.4.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 @@ -14,7 +14,7 @@ dependencies {
testImplementation 'org.testcontainers:testcontainers'
testImplementation 'ch.qos.logback:logback-classic:1.3.14'
testImplementation 'org.testng:testng:7.5.1'
testImplementation 'org.assertj:assertj-core:3.25.3'
testImplementation 'org.assertj:assertj-core:3.26.3'
}

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

test {
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 @@ -16,7 +16,7 @@ dependencies {
testImplementation 'org.springframework.boot:spring-boot-starter-test'
testImplementation 'org.testcontainers:selenium'
testImplementation 'org.testcontainers:junit-jupiter'
testImplementation 'org.assertj:assertj-core:3.25.3'
testImplementation 'org.assertj:assertj-core:3.26.3'
testImplementation 'org.junit.jupiter:junit-jupiter:5.10.2'
}

Expand Down
2 changes: 1 addition & 1 deletion examples/sftp/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ repositories {
dependencies {
testImplementation 'com.jcraft:jsch:0.1.55'
testImplementation 'org.testcontainers:testcontainers'
testImplementation 'org.assertj:assertj-core:3.25.3'
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.2'
}
Expand Down
2 changes: 1 addition & 1 deletion examples/singleton-container/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ dependencies {

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

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 @@ -14,7 +14,7 @@ dependencies {

testImplementation 'org.testcontainers:testcontainers'
testImplementation 'org.testcontainers:solr'
testImplementation 'org.assertj:assertj-core:3.25.3'
testImplementation 'org.assertj:assertj-core:3.26.3'
testImplementation 'org.junit.jupiter:junit-jupiter:5.10.2'
}

Expand Down
2 changes: 1 addition & 1 deletion examples/zookeeper/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ repositories {
dependencies {
testImplementation 'org.apache.curator:curator-framework:5.6.0'
testImplementation 'org.testcontainers:testcontainers'
testImplementation 'org.assertj:assertj-core:3.25.3'
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.2'
}
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.60.0'
testImplementation 'com.azure:azure-cosmos:4.62.0'
}
2 changes: 1 addition & 1 deletion modules/chromadb/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -4,5 +4,5 @@ dependencies {
api project(':testcontainers')

testImplementation 'org.assertj:assertj-core:3.26.3'
testImplementation 'io.rest-assured:rest-assured:5.4.0'
testImplementation 'io.rest-assured:rest-assured:5.5.0'
}
2 changes: 1 addition & 1 deletion modules/consul/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,6 @@ dependencies {
api project(':testcontainers')

testImplementation 'com.ecwid.consul:consul-api:1.4.5'
testImplementation 'io.rest-assured:rest-assured:5.4.0'
testImplementation 'io.rest-assured:rest-assured:5.5.0'
testImplementation 'org.assertj:assertj-core:3.26.3'
}
2 changes: 1 addition & 1 deletion modules/dynalite/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -5,5 +5,5 @@ dependencies {

compileOnly 'com.amazonaws:aws-java-sdk-dynamodb:1.12.763'
testImplementation 'com.amazonaws:aws-java-sdk-dynamodb:1.12.763'
testImplementation 'org.assertj:assertj-core:3.25.3'
testImplementation 'org.assertj:assertj-core:3.26.3'
}
2 changes: 1 addition & 1 deletion modules/gcloud/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ description = "Testcontainers :: GCloud"
dependencies {
api project(':testcontainers')

testImplementation platform("com.google.cloud:libraries-bom:26.39.0")
testImplementation platform("com.google.cloud:libraries-bom:26.43.0")
testImplementation 'com.google.cloud:google-cloud-bigquery'
testImplementation 'com.google.cloud:google-cloud-datastore'
testImplementation 'com.google.cloud:google-cloud-firestore'
Expand Down
4 changes: 2 additions & 2 deletions modules/grafana/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,9 @@ description = "Testcontainers :: Grafana"
dependencies {
api project(':testcontainers')

testImplementation 'org.assertj:assertj-core:3.25.3'
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.1'
testImplementation 'io.micrometer:micrometer-registry-otlp:1.13.2'
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 @@ -11,13 +11,13 @@ dependencies {
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.2")
testImplementation("org.junit.jupiter:junit-jupiter:5.10.3")
testImplementation(project(":junit-jupiter"))
testImplementation("com.hivemq:hivemq-extension-sdk:4.28.1")
testImplementation("com.hivemq:hivemq-extension-sdk:4.30.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 'org.assertj:assertj-core:3.25.3'
testImplementation 'org.assertj:assertj-core:3.26.3'
}

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

compileOnly 'org.influxdb:influxdb-java:2.24'

testImplementation 'org.assertj:assertj-core:3.25.3'
testImplementation 'org.assertj:assertj-core:3.26.3'
testImplementation 'org.influxdb:influxdb-java:2.24'
testImplementation "com.influxdb:influxdb-client-java:6.12.0"
}
2 changes: 1 addition & 1 deletion modules/junit-jupiter/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ description = "Testcontainers :: JUnit Jupiter Extension"

dependencies {
api project(':testcontainers')
implementation platform('org.junit:junit-bom:5.10.2')
implementation platform('org.junit:junit-bom:5.10.3')
implementation 'org.junit.jupiter:junit-jupiter-api'

testImplementation project(':mysql')
Expand Down
2 changes: 1 addition & 1 deletion modules/k6/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -3,5 +3,5 @@ description = "Testcontainers :: k6"
dependencies {
api project(':testcontainers')

testImplementation 'org.assertj:assertj-core:3.25.3'
testImplementation 'org.assertj:assertj-core:3.26.3'
}
2 changes: 1 addition & 1 deletion modules/kafka/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ description = "Testcontainers :: Kafka"
dependencies {
api project(':testcontainers')

testImplementation 'org.apache.kafka:kafka-clients:3.7.0'
testImplementation 'org.apache.kafka:kafka-clients:3.7.1'
testImplementation 'org.assertj:assertj-core:3.26.3'
testImplementation 'com.google.guava:guava:23.0'
}
2 changes: 1 addition & 1 deletion modules/localstack/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,6 @@ dependencies {
testImplementation 'com.amazonaws:aws-java-sdk-logs'
testImplementation 'com.amazonaws:aws-java-sdk-lambda'
testImplementation 'com.amazonaws:aws-java-sdk-core'
testImplementation 'software.amazon.awssdk:s3:2.26.24'
testImplementation 'software.amazon.awssdk:s3:2.26.25'
testImplementation 'org.assertj:assertj-core:3.25.3'
}
2 changes: 1 addition & 1 deletion modules/minio/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,6 @@ description = "Testcontainers :: MinIO"
dependencies {
api project(':testcontainers')

testImplementation("io.minio:minio:8.5.10")
testImplementation("io.minio:minio:8.5.11")
testImplementation 'org.assertj:assertj-core:3.26.3'
}
2 changes: 1 addition & 1 deletion modules/mongodb/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -4,5 +4,5 @@ dependencies {
api project(':testcontainers')

testImplementation("org.mongodb:mongodb-driver-sync:5.1.2")
testImplementation 'org.assertj:assertj-core:3.25.3'
testImplementation 'org.assertj:assertj-core:3.26.3'
}
2 changes: 1 addition & 1 deletion modules/neo4j/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,6 @@ dependencies {

api project(":testcontainers")

testImplementation 'org.neo4j.driver:neo4j-java-driver:4.4.16'
testImplementation 'org.neo4j.driver:neo4j-java-driver:4.4.18'
testImplementation 'org.assertj:assertj-core:3.26.3'
}
2 changes: 1 addition & 1 deletion modules/nginx/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -3,5 +3,5 @@ description = "Testcontainers :: Nginx"
dependencies {
api project(':testcontainers')
compileOnly 'org.jetbrains:annotations:24.1.0'
testImplementation 'org.assertj:assertj-core:3.25.3'
testImplementation 'org.assertj:assertj-core:3.26.3'
}
2 changes: 1 addition & 1 deletion modules/ollama/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -4,5 +4,5 @@ dependencies {
api project(':testcontainers')

testImplementation 'org.assertj:assertj-core:3.26.3'
testImplementation 'io.rest-assured:rest-assured:5.4.0'
testImplementation 'io.rest-assured:rest-assured:5.5.0'
}
2 changes: 1 addition & 1 deletion modules/qdrant/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ dependencies {
api project(':testcontainers')

testImplementation 'org.assertj:assertj-core:3.26.3'
testImplementation 'io.qdrant:client:1.9.1'
testImplementation 'io.qdrant:client:1.10.0'
testImplementation platform('io.grpc:grpc-bom:1.65.1')
testImplementation 'io.grpc:grpc-stub'
testImplementation 'io.grpc:grpc-protobuf'
Expand Down
2 changes: 1 addition & 1 deletion modules/r2dbc/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,6 @@ dependencies {
testImplementation 'io.r2dbc:r2dbc-postgresql:0.8.13.RELEASE'
testImplementation project(':postgresql')

testFixturesImplementation 'io.projectreactor:reactor-core:3.6.6'
testFixturesImplementation 'io.projectreactor:reactor-core:3.6.8'
testFixturesImplementation 'org.assertj:assertj-core:3.26.3'
}
4 changes: 2 additions & 2 deletions modules/redpanda/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ dependencies {
api project(':testcontainers')
shaded 'org.freemarker:freemarker:2.3.32'

testImplementation 'org.apache.kafka:kafka-clients:3.7.0'
testImplementation 'org.apache.kafka:kafka-clients:3.7.1'
testImplementation 'org.assertj:assertj-core:3.26.3'
testImplementation 'io.rest-assured:rest-assured:5.4.0'
testImplementation 'io.rest-assured:rest-assured:5.5.0'
}
2 changes: 1 addition & 1 deletion modules/selenium/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ dependencies {

testImplementation 'org.mortbay.jetty:jetty:6.1.26'
testImplementation project(':nginx')
testImplementation 'org.assertj:assertj-core:3.25.3'
testImplementation 'org.assertj:assertj-core:3.26.3'

compileOnly 'org.jetbrains:annotations:24.1.0'
}
2 changes: 1 addition & 1 deletion modules/solace/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ dependencies {
shaded 'org.awaitility:awaitility:4.2.1'

testImplementation 'org.assertj:assertj-core:3.26.3'
testImplementation 'com.solacesystems:sol-jcsmp:10.23.0'
testImplementation 'com.solacesystems:sol-jcsmp:10.24.1'
testImplementation 'org.apache.qpid:qpid-jms-client:0.61.0'
testImplementation 'org.eclipse.paho:org.eclipse.paho.client.mqttv3:1.2.5'
testImplementation 'org.apache.httpcomponents:fluent-hc:4.5.14'
Expand Down
2 changes: 1 addition & 1 deletion modules/solr/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.apache.solr:solr-solrj:8.11.3'
testImplementation 'org.assertj:assertj-core:3.25.3'
testImplementation 'org.assertj:assertj-core:3.26.3'
}
2 changes: 1 addition & 1 deletion modules/spock/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ dependencies {
testRuntimeOnly 'org.postgresql:postgresql:42.7.3'
testRuntimeOnly 'mysql:mysql-connector-java:8.0.33'
testRuntimeOnly 'org.junit.platform:junit-platform-launcher:1.10.2'
testRuntimeOnly 'org.junit.platform:junit-platform-testkit:1.10.2'
testRuntimeOnly 'org.junit.platform:junit-platform-testkit:1.10.3'

testCompileOnly 'org.jetbrains:annotations:24.1.0'
}
Expand Down
Loading

0 comments on commit e9a408b

Please sign in to comment.