exercism/kotlin/hello-world/build.gradle

29 lines
531 B
Groovy
Raw Normal View History

2016-08-15 19:08:39 +00:00
buildscript {
2018-06-21 13:54:16 +00:00
ext.kotlin_version = '1.2.40'
2016-08-15 19:08:39 +00:00
repositories {
mavenCentral()
}
dependencies {
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
}
}
apply plugin: 'kotlin'
repositories {
mavenCentral()
}
dependencies {
compile "org.jetbrains.kotlin:kotlin-stdlib:$kotlin_version"
testCompile 'junit:junit:4.12'
testCompile "org.jetbrains.kotlin:kotlin-test-junit:$kotlin_version"
}
2018-06-21 13:54:16 +00:00
test {
testLogging {
exceptionFormat = 'full'
events = ["passed", "failed", "skipped"]
}
}