Skip to content

Commit af27853

Browse files
authored
Merge pull request #8998 from testcontainers/combined-pr-branch
Combined dependencies PR
2 parents b08a232 + ce188c5 commit af27853

File tree

51 files changed

+60
-60
lines changed

Some content is hidden

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

51 files changed

+60
-60
lines changed

.github/workflows/combine-prs.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,6 @@ jobs:
1313
steps:
1414
- name: combine-prs
1515
id: combine-prs
16-
uses: github/combine-prs@v5.0.0
16+
uses: github/combine-prs@v5.1.0
1717
with:
1818
github_token: ${{ secrets.GITHUB_TOKEN }}

build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ buildscript {
55

66
dependencies {
77
// https://github.com/melix/japicmp-gradle-plugin/issues/36
8-
classpath 'com.google.guava:guava:32.1.2-jre'
8+
classpath 'com.google.guava:guava:33.2.1-jre'
99
classpath 'com.github.tjni.captainhook:captain-hook:0.1.5'
1010
}
1111
}

core/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -121,7 +121,7 @@ dependencies {
121121
testImplementation files('testlib/repo/fakejar/fakejar/0/fakejar-0.jar')
122122

123123
testImplementation 'org.assertj:assertj-core:3.25.3'
124-
testImplementation 'io.rest-assured:rest-assured:5.4.0'
124+
testImplementation 'io.rest-assured:rest-assured:5.5.0'
125125

126126
jarFileTestCompileOnly "org.projectlombok:lombok:${lombok.version}"
127127
jarFileTestAnnotationProcessor "org.projectlombok:lombok:${lombok.version}"

docs/examples/junit4/generic/build.gradle

Lines changed: 1 addition & 1 deletion
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.21.0"
10+
testImplementation "org.seleniumhq.selenium:selenium-api:4.22.0"
1111
testImplementation 'org.assertj:assertj-core:3.25.3'
1212
}
1313

docs/examples/junit5/redis/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ dependencies {
55

66
testImplementation "org.junit.jupiter:junit-jupiter-api:5.10.2"
77
testImplementation "org.junit.jupiter:junit-jupiter-params:5.10.2"
8-
testRuntimeOnly "org.junit.jupiter:junit-jupiter-engine:5.10.2"
8+
testRuntimeOnly "org.junit.jupiter:junit-jupiter-engine:5.10.3"
99
testImplementation project(":testcontainers")
1010
testImplementation project(":junit-jupiter")
1111
testImplementation 'org.assertj:assertj-core:3.25.3'

examples/cucumber/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ dependencies {
1212
implementation 'org.seleniumhq.selenium:selenium-firefox-driver'
1313
implementation 'org.seleniumhq.selenium:selenium-chrome-driver'
1414

15-
testImplementation platform('io.cucumber:cucumber-bom:7.15.0')
15+
testImplementation platform('io.cucumber:cucumber-bom:7.18.1')
1616
testImplementation 'io.cucumber:cucumber-java'
1717
testImplementation 'io.cucumber:cucumber-junit'
1818
testImplementation 'org.testcontainers:selenium'

modules/activemq/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ description = "Testcontainers :: ActiveMQ"
33
dependencies {
44
api project(':testcontainers')
55

6-
testImplementation 'org.assertj:assertj-core:3.25.3'
6+
testImplementation 'org.assertj:assertj-core:3.26.3'
77
testImplementation "org.apache.activemq:activemq-client:6.1.2"
88
testImplementation "org.apache.activemq:artemis-jakarta-client:2.33.0"
99
}

modules/azure/build.gradle

Lines changed: 1 addition & 1 deletion
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.25.3'
8+
testImplementation 'org.assertj:assertj-core:3.26.3'
99
testImplementation 'com.azure:azure-cosmos:4.60.0'
1010
}

modules/cassandra/build.gradle

Lines changed: 1 addition & 1 deletion
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.25.3'
14+
testImplementation 'org.assertj:assertj-core:3.26.3'
1515
}

modules/chromadb/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,6 @@ description = "Testcontainers :: ChromaDB"
33
dependencies {
44
api project(':testcontainers')
55

6-
testImplementation 'org.assertj:assertj-core:3.25.3'
6+
testImplementation 'org.assertj:assertj-core:3.26.3'
77
testImplementation 'io.rest-assured:rest-assured:5.4.0'
88
}

0 commit comments

Comments
 (0)