Skip to content

Commit ba368dd

Browse files
authored
Use cucumber-bom and selenium-bom (#7249)
1 parent 3dccb4d commit ba368dd

File tree

1 file changed

+8
-5
lines changed

1 file changed

+8
-5
lines changed

examples/cucumber/build.gradle

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

99
dependencies {
10-
implementation 'org.seleniumhq.selenium:selenium-remote-driver:3.141.59'
11-
implementation 'org.seleniumhq.selenium:selenium-firefox-driver:3.141.59'
12-
implementation 'org.seleniumhq.selenium:selenium-chrome-driver:3.141.59'
13-
testImplementation 'io.cucumber:cucumber-java:7.12.0'
14-
testImplementation 'io.cucumber:cucumber-junit:7.12.0'
10+
implementation platform('org.seleniumhq.selenium:selenium-bom:4.10.0')
11+
implementation 'org.seleniumhq.selenium:selenium-remote-driver'
12+
implementation 'org.seleniumhq.selenium:selenium-firefox-driver'
13+
implementation 'org.seleniumhq.selenium:selenium-chrome-driver'
14+
15+
testImplementation platform('io.cucumber:cucumber-bom:7.12.1')
16+
testImplementation 'io.cucumber:cucumber-java'
17+
testImplementation 'io.cucumber:cucumber-junit'
1518
testImplementation 'org.testcontainers:selenium'
1619
testImplementation 'org.assertj:assertj-core:3.24.2'
1720
}

0 commit comments

Comments
 (0)