-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathbuild.gradle
46 lines (41 loc) · 976 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
39
40
41
42
43
44
45
46
plugins {
id 'groovy'
}
repositories {
mavenCentral()
}
dependencies {
implementation 'org.apache.groovy:groovy-all:4.0.23'
testImplementation 'commons-validator:commons-validator:1.9.0'
testImplementation 'io.rest-assured:rest-assured:5.5.0'
testImplementation 'org.testng:testng:7.10.2'
testImplementation 'org.yaml:snakeyaml:2.3'
}
test {
useTestNG(){
suites('src/test/groovy/testing.xml')
}
testLogging {
showStandardStreams = true
}
}
task artifactory_common(type: Test) {
useTestNG(){
useDefaultListeners = true
suites('src/test/groovy/testing.xml')
includeGroups('common')
}
testLogging {
showStandardStreams = true
}
}
task modelscanner(type: Test) {
useTestNG(){
useDefaultListeners = true
suites('src/test/groovy/testing.xml')
includeGroups('model-scanner')
}
testLogging {
showStandardStreams = true
}
}