exercism/kotlin/resistor-color/build.gradle.kts
Anthony Cicchetti fbb2d0d15f /shrug
2020-03-05 17:38:46 -05:00

23 lines
432 B
Kotlin

import org.gradle.api.tasks.testing.logging.TestExceptionFormat
plugins {
kotlin("jvm") version "1.3.60"
}
repositories {
jcenter()
}
dependencies {
compile(kotlin("stdlib"))
testImplementation("junit:junit:4.12")
testImplementation(kotlin("test-junit"))
}
tasks.withType<Test> {
testLogging {
exceptionFormat = TestExceptionFormat.FULL
events("passed", "failed", "skipped")
}
}