21 lines
510 B
Groovy
21 lines
510 B
Groovy
|
apply plugin: 'kotlin-platform-jvm'
|
||
|
|
||
|
repositories {
|
||
|
mavenCentral()
|
||
|
}
|
||
|
|
||
|
dependencies {
|
||
|
expectedBy project(":common")
|
||
|
compile "org.jetbrains.kotlin:kotlin-stdlib-jdk8:$kotlin_version"
|
||
|
testCompile "junit:junit:4.12"
|
||
|
testCompile "org.jetbrains.kotlin:kotlin-test-junit:$kotlin_version"
|
||
|
testCompile "org.jetbrains.kotlin:kotlin-test:$kotlin_version"
|
||
|
}
|
||
|
|
||
|
compileKotlin {
|
||
|
kotlinOptions.jvmTarget = "1.8"
|
||
|
}
|
||
|
compileTestKotlin {
|
||
|
kotlinOptions.jvmTarget = "1.8"
|
||
|
}
|
||
|
sourceCompatibility = "1.8"
|