-
Notifications
You must be signed in to change notification settings - Fork 14
Expand file tree
/
Copy pathselenium3Deps.gradle
More file actions
43 lines (39 loc) · 1.19 KB
/
Copy pathselenium3Deps.gradle
File metadata and controls
43 lines (39 loc) · 1.19 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
39
40
41
42
43
ext.buildRoot = layout.projectDirectory.dir('build-s3')
ext.libsDir = buildRoot.dir('libs')
java {
toolchain {
languageVersion = JavaLanguageVersion.of(8)
}
}
sourceSets {
main {
java {
srcDirs = ['src/main/java', 'src/selenium3/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-s3:${baseVersion}${isSnapshot ? '-SNAPSHOT' : ''}")
api 'com.nordstrom.tools:testng-foundation'
api 'org.seleniumhq.selenium:selenium-server'
api 'org.seleniumhq.selenium:selenium-support'
api('io.github.bonigarcia:webdrivermanager') {
exclude group: 'org.slf4j', module: 'slf4j-api'
}
api 'org.apache.httpcomponents:httpclient'
api 'org.jsoup:jsoup'
api 'org.apache.commons:commons-lang3'
api 'com.beust:jcommander'
api 'com.squareup.okhttp3:okhttp'
api 'com.squareup.okio:okio'
api 'org.eclipse.jetty.websocket:websocket-client'
testImplementation 'com.nordstrom.ui-tools:selenium-grid-manager'
testImplementation 'org.mockito:mockito-core'
}