e67518c349
Also drop legacy tests for 1_1_2
25 lines
425 B
Groovy
Vendored
25 lines
425 B
Groovy
Vendored
buildscript {
|
|
repositories {
|
|
mavenCentral()
|
|
}
|
|
|
|
dependencies {
|
|
classpath("org.jetbrains.kotlin:kotlin-gradle-plugin:1.3.72")
|
|
}
|
|
}
|
|
|
|
apply plugin: 'kotlin'
|
|
|
|
repositories {
|
|
mavenCentral()
|
|
}
|
|
|
|
dependencies {
|
|
compile "org.jetbrains.kotlin:kotlin-stdlib:1.3.72"
|
|
}
|
|
|
|
compileKotlin {
|
|
kotlinOptions.freeCompilerArgs = ["-XXLanguage:+InlineClasses"]
|
|
kotlinOptions.languageVersion = "1.3"
|
|
}
|