-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathbuild.gradle
More file actions
executable file
·38 lines (33 loc) · 925 Bytes
/
Copy pathbuild.gradle
File metadata and controls
executable file
·38 lines (33 loc) · 925 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
26
27
28
29
30
31
32
33
34
35
36
37
38
plugins {
id 'java'
id 'eclipse'
id 'idea'
}
repositories {
mavenCentral()
}
dependencies {
implementation group: 'org.testng', name: 'testng', version: '7.10.2'
implementation 'commons-io:commons-io:2.13.0'
implementation group: 'org.apache.logging.log4j', name: 'log4j-api', version: '2.23.1'
implementation group: 'org.apache.logging.log4j', name: 'log4j-core', version: '2.23.1'
implementation group: 'io.appium', name: 'java-client', version: '9.3.0'
implementation 'com.github.romankh3:image-comparison:4.4.0'
}
test {
useTestNG()
}
task androidTest(type: Test) {
group = 'Android'
description = 'Run TestNG Android suite'
useTestNG {
suites 'src/test/resources/testNG_Android.xml'
}
}
task iOSTest(type: Test) {
group = 'iOS'
description = 'Run TestNG iOS suite'
useTestNG {
suites 'src/test/resources/testNG_IOS.xml'
}
}