-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathbuild.gradle
38 lines (28 loc) · 1010 Bytes
/
build.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
plugins {
id 'java'
}
group 'mobileAutomation'
version '1.0-SNAPSHOT'
repositories {
mavenCentral()
}
dependencies {
// https://mvnrepository.com/artifact/org.testng/testng
testImplementation 'org.testng:testng:7.8.0'
// https://mvnrepository.com/artifact/io.appium/java-client
testImplementation 'io.appium:java-client:8.6.0'
// https://mvnrepository.com/artifact/org.seleniumhq.selenium/selenium-java
testImplementation 'org.seleniumhq.selenium:selenium-java:4.11.0'
testImplementation group: 'commons-codec', name: 'commons-codec', version: '1.15'
// FileUtils.copyFile
testImplementation 'commons-io:commons-io:2.11.0'
// https://mvnrepository.com/artifact/com.aventstack/extentreports
testImplementation 'com.aventstack:extentreports:5.1.1'
// https://mvnrepository.com/artifact/org.apache.poi/poi
//POI
testImplementation 'org.apache.poi:poi:5.2.2'
testImplementation 'org.apache.poi:poi-ooxml:5.2.2'
}
test {
useTestNG()
}