-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
33 lines (29 loc) · 1.12 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
group 'testngex'
version '1.0-SNAPSHOT'
apply plugin: 'java'
repositories {
mavenLocal()
mavenCentral()
jcenter()
}
dependencies {
compile group: 'org.testng', name: 'testng', version: '6.9.13.6'
compile group: 'org.apache.poi', name: 'poi', version: '3.15'
compile group: 'org.apache.poi', name: 'poi-ooxml', version: '3.15'
compile group: 'com.jamesmurty.utils', name: 'java-xmlbuilder', version: '1.1'
compile group: 'org.projectlombok', name: 'lombok', version: '1.16.16'
compile 'org.apache.httpcomponents:httpclient-win:4.5.3'
compile 'io.rest-assured:rest-assured:3.0.5'
compile 'io.rest-assured:json-schema-validator:3.0.5'
compile group: 'com.github.fge', name: 'json-schema-validator', version: '2.2.6'
compile group: 'com.google.code.gson', name: 'gson', version: '2.8.1'
compile group: 'org.hamcrest', name: 'hamcrest-all', version: '1.3'
compile group: 'com.google.inject', name: 'guice', version: '4.1.0'
compile group: 'org.aeonbits.owner', name: 'owner', version: '1.0.9'
}
test {
useTestNG()
filter {
includeTestsMatching 'CustomTestName'
}
}