-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
36 lines (26 loc) · 920 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
plugins {
id 'java'
}
group 'Automation'
version '1.0-SNAPSHOT'
sourceCompatibility = 1.8
repositories {
mavenCentral()
}
test() {
useTestNG() {
useDefaultListeners = true
//outputDirectory = file("$project.buildDir//testngOutput")
suites 'suit2.xml'
//suiteXmlFilesm << new File(".TestSuite.xml")
//setSuiteXmlFiles(suiteXmlFiles)
}
dependencies {
// https://mvnrepository.com/artifact/org.seleniumhq.selenium/selenium-java
compile group: 'org.seleniumhq.selenium', name: 'selenium-java', version: '3.141.59'
compile group: 'org.testng', name: 'testng', version: '6.14.3'
compile group: 'io.github.bonigarcia', name: 'webdrivermanager', version: '3.4.0'
compile group: 'org.apache.poi', name: 'poi', version: '4.0.1'
compile group: 'com.relevantcodes', name: 'extentreports', version: '2.41.2'
}
}