Skip to content

Commit 95b2af9

Browse files
authored
Merge pull request #7584 from testcontainers/combined-pr-branch
Combined dependencies PR
2 parents 5d0631f + 0a84fb4 commit 95b2af9

File tree

26 files changed

+32
-32
lines changed

26 files changed

+32
-32
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@v3.1.2
16+
uses: github/combine-prs@v4.0.0
1717
with:
1818
github_token: ${{ secrets.GITHUB_TOKEN }}

core/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ dependencies {
7373
api 'org.slf4j:slf4j-api:1.7.36'
7474
compileOnly 'org.jetbrains:annotations:24.0.1'
7575
testCompileOnly 'org.jetbrains:annotations:24.0.1'
76-
api 'org.apache.commons:commons-compress:1.23.0'
76+
api 'org.apache.commons:commons-compress:1.24.0'
7777
api ('org.rnorth.duct-tape:duct-tape:1.0.8') {
7878
exclude(group: 'org.jetbrains', module: 'annotations')
7979
}

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.13.0')
15+
testImplementation platform('io.cucumber:cucumber-bom:7.14.0')
1616
testImplementation 'io.cucumber:cucumber-java'
1717
testImplementation 'io.cucumber:cucumber-junit'
1818
testImplementation 'org.testcontainers:selenium'

examples/kafka-cluster/build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@ repositories {
77
}
88

99
dependencies {
10-
testCompileOnly "org.projectlombok:lombok:1.18.28"
11-
testAnnotationProcessor "org.projectlombok:lombok:1.18.28"
10+
testCompileOnly "org.projectlombok:lombok:1.18.30"
11+
testAnnotationProcessor "org.projectlombok:lombok:1.18.30"
1212
testImplementation 'org.testcontainers:kafka'
1313
testImplementation 'org.apache.kafka:kafka-clients:3.5.1'
1414
testImplementation 'org.assertj:assertj-core:3.24.2'

examples/selenium-container/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
plugins {
22
id 'java'
3-
id 'org.springframework.boot' version '2.7.15'
3+
id 'org.springframework.boot' version '2.7.16'
44
}
55
apply plugin: 'io.spring.dependency-management'
66

examples/settings.gradle

Lines changed: 1 addition & 1 deletion
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.14.1"
10-
classpath "com.gradle:common-custom-user-data-gradle-plugin:1.11.1"
10+
classpath "com.gradle:common-custom-user-data-gradle-plugin:1.11.2"
1111
}
1212
}
1313

examples/solr-container/build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@ repositories {
77
}
88

99
dependencies {
10-
compileOnly "org.projectlombok:lombok:1.18.28"
11-
annotationProcessor "org.projectlombok:lombok:1.18.28"
10+
compileOnly "org.projectlombok:lombok:1.18.30"
11+
annotationProcessor "org.projectlombok:lombok:1.18.30"
1212

1313
implementation 'org.apache.solr:solr-solrj:8.11.2'
1414

examples/spring-boot/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
plugins {
22
id 'java'
3-
id 'org.springframework.boot' version '2.7.15'
3+
id 'org.springframework.boot' version '2.7.16'
44
}
55
apply plugin: 'io.spring.dependency-management'
66

modules/consul/build.gradle

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

66
testImplementation 'com.ecwid.consul:consul-api:1.4.5'
7-
testImplementation 'io.rest-assured:rest-assured:5.3.1'
7+
testImplementation 'io.rest-assured:rest-assured:5.3.2'
88
testImplementation 'org.assertj:assertj-core:3.24.2'
99
}

modules/couchbase/build.gradle

Lines changed: 1 addition & 1 deletion
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.11.0'
77

8-
testImplementation 'com.couchbase.client:java-client:3.4.9'
8+
testImplementation 'com.couchbase.client:java-client:3.4.10'
99
testImplementation 'org.awaitility:awaitility:4.2.0'
1010
testImplementation 'org.assertj:assertj-core:3.24.2'
1111
}

0 commit comments

Comments
 (0)