Files
kotlin-fork/idea/testData/gradle/gradleFacetImportTest/internalArgumentsFacetImporting/build.gradle
T
Alexander Dudinsky e67518c349 Update gradle plugin version in GradleFacetImportTest
Also drop legacy tests for 1_1_2
2020-08-10 13:14:01 +03:00

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"
}