-
Notifications
You must be signed in to change notification settings - Fork 14
Expand file tree
/
Copy pathselenium4Deps.gradle
More file actions
38 lines (34 loc) · 1 KB
/
Copy pathselenium4Deps.gradle
File metadata and controls
38 lines (34 loc) · 1 KB
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
28
29
30
31
32
33
34
35
36
37
38
ext.buildRoot = layout.projectDirectory.dir('build-s4')
ext.libsDir = buildRoot.dir('libs')
java {
toolchain {
languageVersion = JavaLanguageVersion.of(17)
}
}
sourceSets {
main {
java {
srcDirs = ['src/main/java', 'src/selenium4/java']
destinationDirectory = buildRoot.dir('classes')
}
output.resourcesDir = buildRoot.dir('classes')
}
test {
java {
destinationDirectory = buildRoot.dir('test-classes')
}
}
}
dependencies {
api platform("com.nordstrom.ui-tools:selenium-bom-s4:${baseVersion}${isSnapshot ? '-SNAPSHOT' : ''}")
api 'com.nordstrom.tools:testng-foundation'
api 'org.seleniumhq.selenium:selenium-grid'
api 'org.seleniumhq.selenium:selenium-support'
api 'org.apache.httpcomponents:httpclient'
api 'org.eclipse.jetty:jetty-servlet'
api 'org.jsoup:jsoup'
api 'org.apache.commons:commons-lang3'
api 'com.beust:jcommander'
testImplementation 'com.nordstrom.ui-tools:selenium-grid-manager'
testImplementation 'org.mockito:mockito-core'
}