-
-
Notifications
You must be signed in to change notification settings - Fork 1.6k
Expand file tree
/
Copy pathbuild.gradle
More file actions
25 lines (20 loc) · 652 Bytes
/
build.gradle
File metadata and controls
25 lines (20 loc) · 652 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
plugins {
id 'java'
}
group 'dev.selenium'
version '1.0-SNAPSHOT'
repositories {
mavenCentral()
}
ext['seleniumVersion'] = System.getProperty('selenium.version', '4.41.0')
dependencies {
testImplementation "org.seleniumhq.selenium:selenium-java:${seleniumVersion}"
testImplementation "org.seleniumhq.selenium:selenium-grid:${seleniumVersion}"
testImplementation platform("org.junit:junit-bom:6.0.2")
testImplementation 'org.junit.jupiter:junit-jupiter-engine'
testRuntimeOnly 'org.junit.platform:junit-platform-launcher'
testImplementation 'com.titusfortner:selenium-logger:2.4.0'
}
test {
useJUnitPlatform()
}