-
-
Notifications
You must be signed in to change notification settings - Fork 1.8k
Expand file tree
/
Copy pathbuild.gradle
More file actions
27 lines (23 loc) · 905 Bytes
/
build.gradle
File metadata and controls
27 lines (23 loc) · 905 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
27
plugins {
id 'java'
}
repositories {
mavenCentral()
}
dependencies {
implementation platform('org.seleniumhq.selenium:selenium-bom:4.35.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.13.4')
testImplementation 'org.junit.platform:junit-platform-suite'
testImplementation platform('io.cucumber:cucumber-bom:7.34.3')
testImplementation 'io.cucumber:cucumber-java'
testImplementation 'io.cucumber:cucumber-junit-platform-engine'
testImplementation 'org.testcontainers:testcontainers-selenium'
testImplementation 'org.assertj:assertj-core:3.27.4'
testRuntimeOnly 'org.junit.platform:junit-platform-launcher:1.10.3'
}
test {
useJUnitPlatform()
}