-
Notifications
You must be signed in to change notification settings - Fork 16
/
selenium3Deps.gradle
64 lines (61 loc) · 2.21 KB
/
selenium3Deps.gradle
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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
ext.buildRoot = file('build-s3')
ext.libsDir = new File(buildRoot, 'libs')
java {
toolchain {
languageVersion = JavaLanguageVersion.of(8)
}
}
sourceSets {
main {
java {
srcDirs = [ 'src/main/java', 'src/selenium3/java' ]
destinationDirectory = new File(buildRoot, 'classes')
}
output.resourcesDir = "${buildRoot}/classes"
}
test {
java {
destinationDirectory = new File(buildRoot, 'test-classes')
}
}
}
dependencies {
constraints {
api 'com.nordstrom.tools:testng-foundation:5.1.1-j8'
api 'org.seleniumhq.selenium:selenium-server:3.141.59'
api 'org.seleniumhq.selenium:selenium-support:3.141.59'
api 'org.seleniumhq.selenium:selenium-chrome-driver:3.141.59'
api 'org.seleniumhq.selenium:selenium-edge-driver:3.141.59'
api 'org.seleniumhq.selenium:selenium-firefox-driver:3.141.59'
api 'org.seleniumhq.selenium:selenium-opera-driver:3.141.59'
api 'org.seleniumhq.selenium:selenium-safari-driver:3.141.59'
api 'org.seleniumhq.selenium:htmlunit-driver:2.70.0'
api 'com.codeborne:phantomjsdriver:1.4.4'
api 'io.github.bonigarcia:webdrivermanager:5.7.0'
api 'org.apache.httpcomponents:httpclient:4.5.14'
api 'org.jsoup:jsoup:1.15.3'
api 'org.apache.commons:commons-lang3:3.12.0'
api 'com.beust:jcommander:1.82'
api 'com.squareup.okhttp3:okhttp:4.10.0'
api 'com.squareup.okio:okio:2.10.0'
api 'org.eclipse.jetty.websocket:websocket-client:9.4.50.v20221201'
api 'org.jetbrains.kotlin:kotlin-stdlib:1.8.10'
api 'org.jetbrains.kotlin:kotlin-stdlib-common:1.8.10'
testImplementation 'io.appium:java-client:7.6.0'
testImplementation 'org.mockito:mockito-core:4.6.1'
}
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 'org.mockito:mockito-core'
}