mirror of
https://github.com/emilybache/GildedRose-Refactoring-Kata.git
synced 2026-02-15 06:21:29 +00:00
22 lines
392 B
Groovy
22 lines
392 B
Groovy
plugins {
|
|
id 'org.jetbrains.kotlin.jvm' version '1.2.71'
|
|
}
|
|
|
|
version '1.0.0'
|
|
|
|
repositories {
|
|
mavenCentral()
|
|
}
|
|
|
|
dependencies {
|
|
compile 'org.jetbrains.kotlin:kotlin-stdlib-jdk8:1.2.71'
|
|
testCompile 'junit:junit:4.12'
|
|
testCompile "org.assertj:assertj-core:3.8.0"
|
|
}
|
|
|
|
compileKotlin {
|
|
kotlinOptions.jvmTarget = '1.8'
|
|
}
|
|
compileTestKotlin {
|
|
kotlinOptions.jvmTarget = '1.8'
|
|
} |