23 lines
426 B
Plaintext
Vendored
23 lines
426 B
Plaintext
Vendored
buildscript {
|
|
repositories {
|
|
jcenter()
|
|
mavenCentral()
|
|
}
|
|
dependencies {
|
|
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:{{kotlin_plugin_version}}"
|
|
}
|
|
}
|
|
apply plugin: "kotlin"
|
|
repositories {
|
|
jcenter()
|
|
mavenCentral()
|
|
}
|
|
dependencies {
|
|
compile "org.jetbrains.kotlin:kotlin-stdlib"
|
|
}
|
|
compileKotlin {
|
|
kotlinOptions {
|
|
freeCompilerArgs = ["-Xinline-classes"]
|
|
}
|
|
}
|