553c525701
#KT-37965 fixed
27 lines
442 B
Kotlin
Vendored
27 lines
442 B
Kotlin
Vendored
import org.jetbrains.kotlin.gradle.tasks.KotlinCompile
|
|
|
|
plugins {
|
|
kotlin("jvm") version "KOTLIN_VERSION"
|
|
}
|
|
|
|
group = "testGroupId"
|
|
version = "1.0-SNAPSHOT"
|
|
|
|
repositories {
|
|
mavenCentral()
|
|
maven {
|
|
url = uri("https://dl.bintray.com/kotlin/kotlin-dev")
|
|
}
|
|
}
|
|
|
|
dependencies {
|
|
testImplementation(kotlin("test-junit"))
|
|
}
|
|
|
|
tasks.test {
|
|
useJUnit()
|
|
}
|
|
|
|
tasks.withType<KotlinCompile>() {
|
|
kotlinOptions.jvmTarget = "1.6"
|
|
} |