-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild.gradle
More file actions
31 lines (25 loc) · 894 Bytes
/
Copy pathbuild.gradle
File metadata and controls
31 lines (25 loc) · 894 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
plugins {
id 'java'
}
group = 'org.example'
version = '1.0-SNAPSHOT'
repositories {
mavenCentral()
}
dependencies {
// https://mvnrepository.com/artifact/io.appium/java-client
implementation("io.appium:java-client:10.0.0")
// https://mvnrepository.com/artifact/org.seleniumhq.selenium/selenium-java
implementation("org.seleniumhq.selenium:selenium-java:4.36.0")
// https://mvnrepository.com/artifact/org.testng/testng
testImplementation("org.testng:testng:7.11.0")
// https://mvnrepository.com/artifact/org.apache.commons/commons-csv
implementation("org.apache.commons:commons-csv:1.14.1")
// https://mvnrepository.com/artifact/io.qameta.allure/allure-testng
implementation("io.qameta.allure:allure-testng:2.30.0")
}
test {
useTestNG(){
suites "./src/test/resources/suite.xml"
}
}