24 lines
357 B
Groovy
Vendored
24 lines
357 B
Groovy
Vendored
buildscript {
|
|
repositories {
|
|
mavenCentral()
|
|
}
|
|
|
|
dependencies {
|
|
classpath("org.jetbrains.kotlin:kotlin-gradle-plugin:1.2.50")
|
|
}
|
|
}
|
|
|
|
apply plugin: 'kotlin'
|
|
|
|
repositories {
|
|
mavenCentral()
|
|
}
|
|
|
|
dependencies {
|
|
compile "org.jetbrains.kotlin:kotlin-stdlib:1.2.50"
|
|
}
|
|
|
|
compileKotlin {
|
|
kotlinOptions.languageVersion = "1.2"
|
|
}
|