Skip to content

Commit

Permalink
Use cucumber-bom and selenium-bom (#7249)
Browse files Browse the repository at this point in the history
  • Loading branch information
eddumelendez committed Jun 28, 2023
1 parent 3dccb4d commit ba368dd
Showing 1 changed file with 8 additions and 5 deletions.
13 changes: 8 additions & 5 deletions examples/cucumber/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -7,11 +7,14 @@ repositories {
}

dependencies {
implementation 'org.seleniumhq.selenium:selenium-remote-driver:3.141.59'
implementation 'org.seleniumhq.selenium:selenium-firefox-driver:3.141.59'
implementation 'org.seleniumhq.selenium:selenium-chrome-driver:3.141.59'
testImplementation 'io.cucumber:cucumber-java:7.12.0'
testImplementation 'io.cucumber:cucumber-junit:7.12.0'
implementation platform('org.seleniumhq.selenium:selenium-bom:4.10.0')
implementation 'org.seleniumhq.selenium:selenium-remote-driver'
implementation 'org.seleniumhq.selenium:selenium-firefox-driver'
implementation 'org.seleniumhq.selenium:selenium-chrome-driver'

testImplementation platform('io.cucumber:cucumber-bom:7.12.1')
testImplementation 'io.cucumber:cucumber-java'
testImplementation 'io.cucumber:cucumber-junit'
testImplementation 'org.testcontainers:selenium'
testImplementation 'org.assertj:assertj-core:3.24.2'
}

0 comments on commit ba368dd

Please sign in to comment.