Files
kotlin-fork/idea/testData/gradle/configurator/enableFeatureSupportToExistentArgumentsWithXFlag/build.gradle
T
2020-04-03 19:31:31 +03:00

23 lines
462 B
Groovy
Vendored

buildscript {
repositories {
jcenter()
mavenCentral()
}
dependencies {
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:1.3.60"
}
}
apply plugin: "kotlin"
repositories {
jcenter()
mavenCentral()
}
dependencies {
compile "org.jetbrains.kotlin:kotlin-stdlib"
}
compileKotlin {
kotlinOptions {
freeCompilerArgs = ["-XXLanguage:+SamConversionForKotlinFunctions"] // Free compiler arguments
}
}