e67518c349
Also drop legacy tests for 1_1_2
21 lines
350 B
Groovy
Vendored
21 lines
350 B
Groovy
Vendored
buildscript {
|
|
repositories {
|
|
mavenCentral()
|
|
}
|
|
|
|
dependencies {
|
|
classpath("org.jetbrains.kotlin:kotlin-gradle-plugin:1.3.72")
|
|
}
|
|
}
|
|
|
|
apply plugin: 'kotlin'
|
|
|
|
dependencies {
|
|
compile "org.jetbrains.kotlin:kotlin-stdlib"
|
|
}
|
|
|
|
compileKotlin {
|
|
kotlinOptions.languageVersion = "1.1"
|
|
kotlinOptions.apiVersion = "1.2"
|
|
}
|