-
Notifications
You must be signed in to change notification settings - Fork 2
/
build.gradle
58 lines (42 loc) · 1.05 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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
plugins {
id 'java-library'
}
group 'io.testerra.skeletons'
version '2-SNAPSHOT'
ext {
testerraVersion = '2.10'
}
repositories {
mavenCentral()
// Uncomment it for Testerra SNAPSHOTS
// maven {
// url "https://s01.oss.sonatype.org/content/repositories/snapshots/"
// }
}
compileJava.options.encoding = 'UTF-8'
compileTestJava.options.encoding = "UTF-8"
java {
sourceCompatibility = JavaVersion.VERSION_11
targetCompatibility = JavaVersion.VERSION_11
}
dependencies {
implementation "io.testerra:driver-ui-desktop:${testerraVersion}"
implementation "io.testerra:report-ng:${testerraVersion}"
}
repositories {
mavenCentral()
}
test {
useTestNG() {
suites file('src/test/resources/suite.xml')
}
testLogging {
outputs.upToDateWhen { false }
showStandardStreams = true
}
options {
systemProperties(System.getProperties())
}
// basically execution returns "GREEN" (framework exits with exit code > 0 if there were failures)
ignoreFailures = true
}