-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
35 lines (25 loc) · 1.04 KB
/
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
group 'com.example.testng'
version '1.0-SNAPSHOT'
apply plugin: 'java'
sourceCompatibility = 1.8
repositories {
jcenter()
}
dependencies {
//This tool is using for testing and validating REST services
testCompile 'io.rest-assured:rest-assured:3.0.7'
//This tool is using for validate that a JSON response conforms to a Json Schema
testCompile 'io.rest-assured:json-schema-validator:3.0.7'
compile group: 'org.testng', name: 'testng', version: '6.14.2'
//This is a wrapper for Selenium WebDriver that allows easier and faster writing of UI Tests
compile group: 'com.codeborne', name: 'selenide', version: '4.10'
//This library is aimed to automate the Selenium Webdriver binaries management in runtime for Java.
compile group: 'io.github.bonigarcia', name: 'webdrivermanager', version: '2.1.0'
//This library is used for logging. It allows to set up a log description
compile group: 'log4j', name: 'log4j', version: '1.2.17'
}
test {
useTestNG{
suites 'src/test/resources/testng.xml'
}
}