Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Combined dependencies PR #7500

Merged
merged 9 commits into from
Sep 6, 2023
2 changes: 1 addition & 1 deletion docs/examples/junit4/generic/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,6 @@ dependencies {
testImplementation project(":mysql")

testRuntimeOnly 'mysql:mysql-connector-java:8.0.33'
testImplementation "org.seleniumhq.selenium:selenium-api:4.10.0"
testImplementation "org.seleniumhq.selenium:selenium-api:4.12.1"
testImplementation 'org.assertj:assertj-core:3.24.2'
}
2 changes: 1 addition & 1 deletion examples/cucumber/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ repositories {
}

dependencies {
implementation platform('org.seleniumhq.selenium:selenium-bom:4.11.0')
implementation platform('org.seleniumhq.selenium:selenium-bom:4.12.1')
implementation 'org.seleniumhq.selenium:selenium-remote-driver'
implementation 'org.seleniumhq.selenium:selenium-firefox-driver'
implementation 'org.seleniumhq.selenium:selenium-chrome-driver'
Expand Down
2 changes: 1 addition & 1 deletion examples/hazelcast/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ repositories {

dependencies {
testImplementation 'org.testcontainers:testcontainers'
testImplementation 'com.hazelcast:hazelcast:5.2.3'
testImplementation 'com.hazelcast:hazelcast:5.3.2'
testImplementation 'ch.qos.logback:logback-classic:1.3.11'
testImplementation 'org.assertj:assertj-core:3.24.2'
testImplementation 'org.junit.jupiter:junit-jupiter:5.10.0'
Expand Down
2 changes: 1 addition & 1 deletion modules/orientdb/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,6 @@ dependencies {
api "com.orientechnologies:orientdb-client:3.2.22"

testImplementation 'org.assertj:assertj-core:3.24.2'
testImplementation 'org.apache.tinkerpop:gremlin-driver:3.6.4'
testImplementation 'org.apache.tinkerpop:gremlin-driver:3.7.0'
testImplementation "com.orientechnologies:orientdb-gremlin:3.2.22"
}
2 changes: 1 addition & 1 deletion modules/selenium/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ dependencies {
provided 'org.seleniumhq.selenium:selenium-remote-driver:4.10.0'
provided 'org.seleniumhq.selenium:selenium-chrome-driver:4.10.0'

testImplementation platform('org.seleniumhq.selenium:selenium-bom:4.11.0')
testImplementation platform('org.seleniumhq.selenium:selenium-bom:4.12.1')
testImplementation 'org.seleniumhq.selenium:selenium-firefox-driver'
testImplementation 'org.seleniumhq.selenium:selenium-edge-driver'
testImplementation 'org.seleniumhq.selenium:selenium-support'
Expand Down