exercism/kotlin/dominoes/build.gradle.kts
Anthony Cicchetti 3e186b69eb Kotlin exercies
2020-03-07 17:29:24 -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")
}
}