blob: 1b15a2097966082fea419ee4e82dd66f40e521a8 (
plain)
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
|
import org.gradle.api.tasks.testing.logging.TestExceptionFormat
import org.gradle.api.tasks.testing.logging.TestLogEvent
subprojects {
apply {
plugin("maven-publish")
}
dependencies {
compileOnly(project(":core"))
implementation(kotlin("stdlib-jdk8"))
implementation(kotlin("stdlib"))
implementation(kotlin("reflect"))
testImplementation(project(":test-utils"))
testImplementation(project(":core:test-api"))
testImplementation("org.junit.jupiter:junit-jupiter:5.6.0")
}
tasks.test {
useJUnitPlatform()
testLogging {
exceptionFormat = TestExceptionFormat.FULL
events(TestLogEvent.SKIPPED, TestLogEvent.FAILED)
showExceptions = true
showCauses = true
showStackTraces = true
}
}
}
|