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 #7587

Merged
merged 10 commits into from
Sep 26, 2023
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
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.12.1"
testImplementation "org.seleniumhq.selenium:selenium-api:4.13.0"
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.12.1')
implementation platform('org.seleniumhq.selenium:selenium-bom:4.13.0')
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/settings.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ buildscript {
}
dependencies {
classpath "gradle.plugin.ch.myniva.gradle:s3-build-cache:0.10.0"
classpath "com.gradle.enterprise:com.gradle.enterprise.gradle.plugin:3.14.1"
classpath "com.gradle.enterprise:com.gradle.enterprise.gradle.plugin:3.15"
classpath "com.gradle:common-custom-user-data-gradle-plugin:1.11.2"
}
}
Expand Down
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.12.1')
testImplementation platform('org.seleniumhq.selenium:selenium-bom:4.13.0')
testImplementation 'org.seleniumhq.selenium:selenium-firefox-driver'
testImplementation 'org.seleniumhq.selenium:selenium-edge-driver'
testImplementation 'org.seleniumhq.selenium:selenium-support'
Expand Down
2 changes: 1 addition & 1 deletion settings.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ buildscript {
}
}
dependencies {
classpath "com.gradle.enterprise:com.gradle.enterprise.gradle.plugin:3.14.1"
classpath "com.gradle.enterprise:com.gradle.enterprise.gradle.plugin:3.15"
classpath "com.gradle:common-custom-user-data-gradle-plugin:1.11.2"
classpath "org.gradle.toolchains:foojay-resolver:0.7.0"
}
Expand Down
Loading