Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 8 additions & 8 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -5,17 +5,17 @@ buildscript {

dependencies {
// https://github.com/melix/japicmp-gradle-plugin/issues/36
classpath 'com.google.guava:guava:33.3.1-jre'
classpath 'com.google.guava:guava:33.7.1-jre'
classpath 'com.github.tjni.captainhook:captain-hook:0.1.5'
}
}

plugins {
id 'io.franzbecker.gradle-lombok' version '5.0.0'
id 'com.gradleup.shadow' version '8.3.9'
id 'me.champeau.gradle.japicmp' version '0.4.3' apply false
id 'com.gradleup.shadow' version '8.3.11'
id 'me.champeau.gradle.japicmp' version '0.4.6' apply false
id 'com.diffplug.spotless' version '6.22.0' apply false
id 'org.jreleaser' version '1.20.0' apply false
id 'org.jreleaser' version '1.26.0' apply false
}

apply from: "$rootDir/gradle/ci-support.gradle"
Expand Down Expand Up @@ -134,11 +134,11 @@ subprojects {
}

dependencies {
testImplementation 'ch.qos.logback:logback-classic:1.3.15'
testImplementation 'org.assertj:assertj-core:3.27.4'
testImplementation 'org.junit.jupiter:junit-jupiter:5.13.4'
testImplementation 'ch.qos.logback:logback-classic:1.3.16'
testImplementation 'org.assertj:assertj-core:3.27.7'
testImplementation 'org.junit.jupiter:junit-jupiter:5.14.4'

testRuntimeOnly 'org.junit.platform:junit-platform-launcher:1.11.0'
testRuntimeOnly 'org.junit.platform:junit-platform-launcher:1.14.4'
}

checkstyle {
Expand Down
16 changes: 8 additions & 8 deletions core/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ tasks.japicmp {

configurations.all {
resolutionStrategy {
force 'com.fasterxml.jackson.core:jackson-databind:2.18.4'
force 'com.fasterxml.jackson.core:jackson-databind:2.22.2'
force 'com.fasterxml.jackson.datatype:jackson-datatype-jsr310:2.18.4'
}
}
Expand Down Expand Up @@ -91,21 +91,21 @@ dependencies {

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

shaded 'com.google.guava:guava:33.3.1-jre'
shaded "org.yaml:snakeyaml:2.6"
shaded 'com.google.guava:guava:33.7.1-jre'
shaded "org.yaml:snakeyaml:2.7"

shaded 'org.glassfish.main.external:trilead-ssh2-repackaged:4.1.2'

shaded 'org.zeroturnaround:zt-exec:1.13.0'

testRuntimeOnly 'org.junit.platform:junit-platform-launcher:1.14.3'
testRuntimeOnly 'org.junit.platform:junit-platform-launcher:1.14.4'

testImplementation 'org.junit.jupiter:junit-jupiter:5.13.4'
testImplementation 'org.junit.jupiter:junit-jupiter:5.14.4'
testImplementation('com.google.cloud.tools:jib-core:0.28.2') {
exclude group: 'com.google.guava', module: 'guava'
}
testImplementation 'org.apache.httpcomponents:httpclient:4.5.14'
testImplementation 'redis.clients:jedis:7.4.1'
testImplementation 'redis.clients:jedis:8.0.1'
testImplementation 'com.rabbitmq:amqp-client:5.35.0'
testImplementation 'org.mongodb:mongo-java-driver:3.12.14'

Expand All @@ -120,8 +120,8 @@ dependencies {

jarFileTestCompileOnly "org.projectlombok:lombok:${lombok.version}"
jarFileTestAnnotationProcessor "org.projectlombok:lombok:${lombok.version}"
jarFileTestRuntimeOnly 'org.junit.platform:junit-platform-launcher:1.14.3'
jarFileTestImplementation 'org.junit.jupiter:junit-jupiter:5.13.4'
jarFileTestRuntimeOnly 'org.junit.platform:junit-platform-launcher:1.14.4'
jarFileTestImplementation 'org.junit.jupiter:junit-jupiter:5.14.4'
jarFileTestImplementation 'org.assertj:assertj-core:3.27.7'
jarFileTestImplementation 'org.ow2.asm:asm-debug-all:5.2'
}
Expand Down
8 changes: 4 additions & 4 deletions docs/examples/junit5/redis/build.gradle
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
description = "Examples for docs"

dependencies {
api "io.lettuce:lettuce-core:6.8.0.RELEASE"
api "io.lettuce:lettuce-core:7.7.0.RELEASE"

testRuntimeOnly 'org.junit.jupiter:junit-jupiter:5.13.4'
testRuntimeOnly 'org.junit.platform:junit-platform-launcher:1.10.3'
testRuntimeOnly 'org.junit.jupiter:junit-jupiter:5.14.4'
testRuntimeOnly 'org.junit.platform:junit-platform-launcher:1.14.4'
testImplementation project(":testcontainers")
testImplementation project(":testcontainers-junit-jupiter")
testImplementation 'org.assertj:assertj-core:3.27.4'
testImplementation 'org.assertj:assertj-core:3.27.7'
}

test {
Expand Down
6 changes: 3 additions & 3 deletions docs/examples/spock/redis/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,10 @@ plugins {
}

dependencies {
api "io.lettuce:lettuce-core:6.8.0.RELEASE"
testImplementation 'org.spockframework:spock-core:2.3-groovy-4.0'
api "io.lettuce:lettuce-core:7.7.0.RELEASE"
testImplementation 'org.spockframework:spock-core:2.4-groovy-4.0'
testImplementation project(":testcontainers-spock")
testImplementation 'ch.qos.logback:logback-classic:1.3.15'
testImplementation 'ch.qos.logback:logback-classic:1.3.16'
}

test {
Expand Down
10 changes: 5 additions & 5 deletions examples/cucumber/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -7,19 +7,19 @@ repositories {
}

dependencies {
implementation platform('org.seleniumhq.selenium:selenium-bom:4.35.0')
implementation platform('org.seleniumhq.selenium:selenium-bom:4.48.0')
implementation 'org.seleniumhq.selenium:selenium-remote-driver'
implementation 'org.seleniumhq.selenium:selenium-firefox-driver'
implementation 'org.seleniumhq.selenium:selenium-chrome-driver'

testImplementation platform('org.junit:junit-bom:5.13.4')
testImplementation platform('org.junit:junit-bom:5.14.4')
testImplementation 'org.junit.platform:junit-platform-suite'
testImplementation platform('io.cucumber:cucumber-bom:7.30.0')
testImplementation platform('io.cucumber:cucumber-bom:7.34.7')
testImplementation 'io.cucumber:cucumber-java'
testImplementation 'io.cucumber:cucumber-junit-platform-engine'
testImplementation 'org.testcontainers:testcontainers-selenium'
testImplementation 'org.assertj:assertj-core:3.27.4'
testRuntimeOnly 'org.junit.platform:junit-platform-launcher:1.10.3'
testImplementation 'org.assertj:assertj-core:3.27.7'
testRuntimeOnly 'org.junit.platform:junit-platform-launcher:1.14.4'
}

test {
Expand Down
Binary file modified examples/gradle/wrapper/gradle-wrapper.jar
Binary file not shown.
4 changes: 2 additions & 2 deletions examples/gradle/wrapper/gradle-wrapper.properties
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
distributionSha256Sum=bd71102213493060956ec229d946beee57158dbd89d0e62b91bca0fa2c5f3531
distributionUrl=https\://services.gradle.org/distributions/gradle-8.14.3-bin.zip
distributionSha256Sum=acd53f1edaf02f1a8ff99879f8a34b302661a057d9b063ae9e35b552f804d20a
distributionUrl=https\://services.gradle.org/distributions/gradle-9.7.1-bin.zip
networkTimeout=10000
validateDistributionUrl=true
zipStoreBase=GRADLE_USER_HOME
Expand Down
11 changes: 4 additions & 7 deletions examples/gradlew

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

36 changes: 12 additions & 24 deletions examples/gradlew.bat

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 4 additions & 4 deletions examples/hazelcast/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -9,10 +9,10 @@ repositories {
dependencies {
testImplementation 'org.testcontainers:testcontainers'
testImplementation 'com.hazelcast:hazelcast:5.3.8'
testImplementation 'ch.qos.logback:logback-classic:1.3.15'
testImplementation 'org.assertj:assertj-core:3.27.4'
testImplementation 'org.junit.jupiter:junit-jupiter:5.13.4'
testRuntimeOnly 'org.junit.platform:junit-platform-launcher:1.11.0'
testImplementation 'ch.qos.logback:logback-classic:1.3.16'
testImplementation 'org.assertj:assertj-core:3.27.7'
testImplementation 'org.junit.jupiter:junit-jupiter:5.14.4'
testRuntimeOnly 'org.junit.platform:junit-platform-launcher:1.14.4'
}

test {
Expand Down
8 changes: 4 additions & 4 deletions examples/immudb/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -10,11 +10,11 @@ dependencies {
implementation 'io.codenotary:immudb4j:1.0.1'
testImplementation 'org.testcontainers:testcontainers'
testImplementation 'org.testcontainers:testcontainers-junit-jupiter'
testImplementation 'org.assertj:assertj-core:3.27.4'
testImplementation 'org.assertj:assertj-core:3.27.7'
testImplementation 'com.google.guava:guava:23.0'
testImplementation 'ch.qos.logback:logback-classic:1.3.15'
testImplementation 'org.junit.jupiter:junit-jupiter:5.13.4'
testRuntimeOnly 'org.junit.platform:junit-platform-launcher:1.11.0'
testImplementation 'ch.qos.logback:logback-classic:1.3.16'
testImplementation 'org.junit.jupiter:junit-jupiter:5.14.4'
testRuntimeOnly 'org.junit.platform:junit-platform-launcher:1.14.4'
}

test {
Expand Down
14 changes: 7 additions & 7 deletions examples/kafka-cluster/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -7,16 +7,16 @@ repositories {
}

dependencies {
testCompileOnly "org.projectlombok:lombok:1.18.38"
testAnnotationProcessor "org.projectlombok:lombok:1.18.38"
testCompileOnly "org.projectlombok:lombok:1.18.46"
testAnnotationProcessor "org.projectlombok:lombok:1.18.46"
testImplementation 'org.testcontainers:testcontainers-kafka'
testImplementation 'org.apache.kafka:kafka-clients:4.1.0'
testImplementation 'org.assertj:assertj-core:3.27.4'
testImplementation 'org.apache.kafka:kafka-clients:4.3.1'
testImplementation 'org.assertj:assertj-core:3.27.7'
testImplementation 'com.google.guava:guava:23.0'
testImplementation 'ch.qos.logback:logback-classic:1.3.15'
testImplementation 'org.junit.jupiter:junit-jupiter:5.13.4'
testImplementation 'ch.qos.logback:logback-classic:1.3.16'
testImplementation 'org.junit.jupiter:junit-jupiter:5.14.4'
testImplementation 'org.awaitility:awaitility:4.3.0'
testRuntimeOnly 'org.junit.platform:junit-platform-launcher:1.11.0'
testRuntimeOnly 'org.junit.platform:junit-platform-launcher:1.14.4'
}

test {
Expand Down
10 changes: 5 additions & 5 deletions examples/nats/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -7,13 +7,13 @@ repositories {
}

dependencies {
testImplementation 'org.assertj:assertj-core:3.27.4'
testImplementation 'org.assertj:assertj-core:3.27.7'
testImplementation 'org.testcontainers:testcontainers'
testImplementation 'io.nats:jnats:2.23.0'
testImplementation 'ch.qos.logback:logback-classic:1.3.15'
testImplementation 'io.nats:jnats:2.26.2'
testImplementation 'ch.qos.logback:logback-classic:1.3.16'
testImplementation 'org.apache.httpcomponents:httpclient:4.5.14'
testImplementation 'org.junit.jupiter:junit-jupiter:5.13.4'
testRuntimeOnly 'org.junit.platform:junit-platform-launcher:1.11.0'
testImplementation 'org.junit.jupiter:junit-jupiter:5.14.4'
testRuntimeOnly 'org.junit.platform:junit-platform-launcher:1.14.4'
}

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

dependencies {
testImplementation 'org.assertj:assertj-core:3.27.4'
testImplementation 'org.neo4j.driver:neo4j-java-driver:4.4.20'
testImplementation 'org.assertj:assertj-core:3.27.7'
testImplementation 'org.neo4j.driver:neo4j-java-driver:4.4.27'
testImplementation 'org.testcontainers:testcontainers-neo4j'
testImplementation 'org.testcontainers:testcontainers-junit-jupiter'
testImplementation 'org.junit.jupiter:junit-jupiter:5.13.4'
testRuntimeOnly 'org.junit.platform:junit-platform-launcher:1.11.0'
testImplementation 'org.junit.jupiter:junit-jupiter:5.14.4'
testRuntimeOnly 'org.junit.platform:junit-platform-launcher:1.14.4'
}

test {
Expand Down
10 changes: 5 additions & 5 deletions examples/ollama-hugging-face/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -8,11 +8,11 @@ repositories {

dependencies {
testImplementation 'org.testcontainers:testcontainers-ollama'
testImplementation 'org.assertj:assertj-core:3.27.4'
testImplementation 'ch.qos.logback:logback-classic:1.3.15'
testImplementation 'org.junit.jupiter:junit-jupiter:5.13.4'
testImplementation 'io.rest-assured:rest-assured:5.5.6'
testRuntimeOnly 'org.junit.platform:junit-platform-launcher:1.11.0'
testImplementation 'org.assertj:assertj-core:3.27.7'
testImplementation 'ch.qos.logback:logback-classic:1.3.16'
testImplementation 'org.junit.jupiter:junit-jupiter:5.14.4'
testImplementation 'io.rest-assured:rest-assured:6.0.1'
testRuntimeOnly 'org.junit.platform:junit-platform-launcher:1.14.4'
}

test {
Expand Down
Loading
Loading