-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
37 lines (30 loc) · 852 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
plugins {
id 'java-library'
}
repositories {
mavenCentral()
}
def junitVersion = "5.7.2"
dependencies {
testImplementation(
"io.rest-assured:rest-assured:4.3.1",
"org.assertj:assertj-core:3.19.0",
"org.junit.jupiter:junit-jupiter-api:$junitVersion")
testRuntimeOnly "org.junit.jupiter:junit-jupiter-engine:$junitVersion"
}
tasks.withType(JavaCompile) {
options.encoding = 'UTF-8'
sourceCompatibility = JavaVersion.VERSION_1_8
targetCompatibility = JavaVersion.VERSION_1_8
}
tasks.withType(Test) {
systemProperties(System.getProperties())
useJUnitPlatform()
testLogging {
lifecycle {
// events "started", "failed"
events "started", "skipped", "failed", "standard_error", "standard_out"
exceptionFormat "short"
}
}
}