Upgraded to Gradle 7.0.1

This commit is contained in:
Erik C. Thauvin 2021-05-11 21:05:06 -07:00
parent 392b167e77
commit 50b2e93718
5 changed files with 9 additions and 4 deletions

View file

@ -1,4 +1,5 @@
import org.jetbrains.kotlin.gradle.tasks.KotlinCompile
import org.gradle.api.tasks.testing.logging.TestExceptionFormat
plugins {
jacoco
@ -71,6 +72,10 @@ val javadocJar by tasks.creating(Jar::class) {
tasks {
withType<Test> {
testLogging {
exceptionFormat = TestExceptionFormat.FULL
}
useTestNG()
}