8caafa874e
Those versions have been resolved from -dev repository, which got cleared and those tests started to fail. In long term, it would be nice to not use fixed Kotlin versions in tests, but for now we just advance it to prevent tests from failing.
25 lines
588 B
Groovy
Vendored
25 lines
588 B
Groovy
Vendored
buildscript {
|
|
repositories {
|
|
jcenter()
|
|
mavenCentral()
|
|
maven { url 'https://dl.bintray.com/kotlin/kotlin-dev' }
|
|
}
|
|
dependencies {
|
|
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:1.3.11"
|
|
}
|
|
}
|
|
apply plugin: "kotlin"
|
|
repositories {
|
|
jcenter()
|
|
mavenCentral()
|
|
maven { url 'https://dl.bintray.com/kotlin/kotlin-dev' }
|
|
}
|
|
dependencies {
|
|
compile "org.jetbrains.kotlin:kotlin-stdlib"
|
|
}
|
|
compileKotlin {
|
|
kotlinOptions {
|
|
freeCompilerArgs = ["-XXLanguage:+SamConversionForKotlinFunctions"] // Free compiler arguments
|
|
}
|
|
}
|