mirror of https://github.com/shadowfacts/ekt.git
21 lines
477 B
Groovy
21 lines
477 B
Groovy
|
buildscript {
|
||
|
repositories {
|
||
|
jcenter()
|
||
|
}
|
||
|
dependencies {
|
||
|
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
|
||
|
}
|
||
|
}
|
||
|
|
||
|
apply plugin: "kotlin"
|
||
|
|
||
|
repositories {
|
||
|
jcenter()
|
||
|
}
|
||
|
|
||
|
dependencies {
|
||
|
compile group: "org.jetbrains.kotlin", name: "kotlin-stdlib", version: kotlin_version
|
||
|
compile group: "org.jetbrains.kotlin", name: "kotlin-compiler", version: kotlin_version
|
||
|
compile group: "org.jetbrains.kotlin", name: "kotlin-script-util", version: kotlin_version
|
||
|
}
|