-
Notifications
You must be signed in to change notification settings - Fork 16
/
selenium4Deps.gradle
58 lines (55 loc) · 1.97 KB
/
selenium4Deps.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
ext.buildRoot = file('build-s4')
ext.libsDir = new File(buildRoot, 'libs')
java {
toolchain {
languageVersion = JavaLanguageVersion.of(17)
}
}
sourceSets {
main {
java {
srcDirs = [ 'src/main/java', 'src/selenium4/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-j11'
api 'org.seleniumhq.selenium:selenium-grid:4.25.0'
api 'org.seleniumhq.selenium:selenium-support:4.25.0'
api 'org.seleniumhq.selenium:selenium-chrome-driver:4.25.0'
api 'org.seleniumhq.selenium:selenium-edge-driver:4.25.0'
api 'org.seleniumhq.selenium:selenium-firefox-driver:4.25.0'
api 'org.seleniumhq.selenium:selenium-opera-driver:4.4.0'
api 'org.seleniumhq.selenium:selenium-safari-driver:4.25.0'
api 'com.nordstrom.ui-tools:htmlunit-remote:4.23.0'
api 'org.seleniumhq.selenium:htmlunit3-driver:4.23.0'
api 'org.htmlunit:htmlunit:4.4.0'
api 'com.codeborne:phantomjsdriver:1.5.0'
api 'org.apache.httpcomponents:httpclient:4.5.14'
api 'org.eclipse.jetty:jetty-servlet:9.4.50.v20221201'
api 'org.jsoup:jsoup:1.15.3'
api 'org.apache.commons:commons-lang3:3.16.0'
api 'com.beust:jcommander:1.82'
api 'io.netty:netty-transport-native-epoll:4.1.93.Final'
api 'io.netty:netty-transport-native-kqueue:4.1.93.Final'
testImplementation 'io.appium:java-client:9.3.0'
testImplementation 'org.mockito:mockito-core:4.6.1'
}
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 'org.mockito:mockito-core'
}