Skip to content
Merged
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
10 changes: 10 additions & 0 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,8 @@ updates:
update-types: [ "version-update:semver-minor", "version-update:semver-patch" ]
- dependency-name: "org.apache.commons:commons-compress"
update-types: [ "version-update:semver-minor" ]
- dependency-name: "org.awaitility:awaitility"
update-types: [ "version-update:semver-patch" ]
- package-ecosystem: "gradle"
directory: "/"
allow:
Expand Down Expand Up @@ -76,6 +78,9 @@ updates:
schedule:
interval: "weekly"
open-pull-requests-limit: 10
ignore:
- dependency-name: "org.awaitility:awaitility"
update-types: [ "version-update:semver-patch" ]
- package-ecosystem: "gradle"
directory: "/modules/cratedb"
schedule:
Expand Down Expand Up @@ -280,6 +285,9 @@ updates:
schedule:
interval: "weekly"
open-pull-requests-limit: 10
ignore:
- dependency-name: "org.awaitility:awaitility"
update-types: [ "version-update:semver-patch" ]
- package-ecosystem: "gradle"
directory: "/modules/r2dbc"
schedule:
Expand Down Expand Up @@ -314,6 +322,8 @@ updates:
ignore:
- dependency-name: "org.apache.qpid:qpid-jms-client"
update-types: [ "version-update:semver-major" ]
- dependency-name: "org.awaitility:awaitility"
update-types: [ "version-update:semver-patch" ]
- package-ecosystem: "gradle"
directory: "/modules/solr"
schedule:
Expand Down
2 changes: 1 addition & 1 deletion core/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ dependencies {
exclude group: 'org.apache.commons', module: 'commons-compress'
}

shaded 'org.awaitility:awaitility:4.2.1'
shaded 'org.awaitility:awaitility:4.2.0'

api platform('com.github.docker-java:docker-java-bom:3.4.0')
shaded platform('com.github.docker-java:docker-java-bom:3.4.0')
Expand Down
2 changes: 1 addition & 1 deletion modules/couchbase/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,6 @@ dependencies {
shaded 'com.squareup.okhttp3:okhttp:4.12.0'

testImplementation 'com.couchbase.client:java-client:3.7.1'
testImplementation 'org.awaitility:awaitility:4.2.1'
testImplementation 'org.awaitility:awaitility:4.2.0'
testImplementation 'org.assertj:assertj-core:3.26.3'
}
2 changes: 1 addition & 1 deletion modules/questdb/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ dependencies {
testImplementation project(':jdbc-test')
testImplementation 'org.assertj:assertj-core:3.26.3'
testImplementation 'org.questdb:questdb:7.3.9'
testImplementation 'org.awaitility:awaitility:4.2.1'
testImplementation 'org.awaitility:awaitility:4.2.0'
testImplementation 'org.apache.httpcomponents:httpclient:4.5.14'
}

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

shaded 'org.awaitility:awaitility:4.2.1'
shaded 'org.awaitility:awaitility:4.2.0'

testImplementation 'org.assertj:assertj-core:3.26.3'
testImplementation 'com.solacesystems:sol-jcsmp:10.24.1'
Expand Down
Loading