2017-08-04 19:38:17 +00:00
|
|
|
buildscript {
|
|
|
|
repositories {
|
|
|
|
jcenter()
|
|
|
|
}
|
|
|
|
dependencies {
|
|
|
|
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-08-04 21:17:50 +00:00
|
|
|
plugins {
|
2017-08-19 15:45:27 +00:00
|
|
|
id "idea"
|
2017-08-04 21:17:50 +00:00
|
|
|
}
|
|
|
|
|
2017-08-04 19:38:17 +00:00
|
|
|
apply plugin: "kotlin"
|
2017-10-08 17:26:07 +00:00
|
|
|
apply from: "https://github.com/shadowfacts/maven/raw/master/maven.gradle"
|
2017-08-04 19:38:17 +00:00
|
|
|
|
|
|
|
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
|
|
|
|
}
|
2017-08-04 21:17:50 +00:00
|
|
|
|
2017-08-19 15:45:27 +00:00
|
|
|
idea.module.inheritOutputDirs = true
|