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

24 lines
490 B
Plaintext
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", "-Xinline-classes"]
// Free compiler arguments
}
}