-
-
Notifications
You must be signed in to change notification settings - Fork 1.8k
Expand file tree
/
Copy pathbuild.gradle
More file actions
26 lines (22 loc) · 818 Bytes
/
build.gradle
File metadata and controls
26 lines (22 loc) · 818 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
plugins {
id 'java'
}
repositories {
mavenCentral()
}
dependencies {
implementation platform('org.seleniumhq.selenium:selenium-bom:4.25.0')
implementation 'org.seleniumhq.selenium:selenium-remote-driver'
implementation 'org.seleniumhq.selenium:selenium-firefox-driver'
implementation 'org.seleniumhq.selenium:selenium-chrome-driver'
testImplementation platform('org.junit:junit-bom:5.10.3')
testImplementation 'org.junit.platform:junit-platform-suite'
testImplementation platform('io.cucumber:cucumber-bom:7.18.1')
testImplementation 'io.cucumber:cucumber-java'
testImplementation 'io.cucumber:cucumber-junit-platform-engine'
testImplementation 'org.testcontainers:selenium'
testImplementation 'org.assertj:assertj-core:3.26.3'
}
test {
useJUnitPlatform()
}