Move scripting configuration into compiler plugin

This commit is contained in:
Ilya Chernikov
2018-02-26 19:20:53 +01:00
parent 1514a113b8
commit d05f67127d
23 changed files with 452 additions and 168 deletions
@@ -0,0 +1,18 @@
description = "Kotlin Scripting IDEA Plugin"
apply { plugin("kotlin") }
dependencies {
compile(project(":kotlin-scripting-compiler-plugin"))
}
sourceSets {
"main" { projectDefault() }
"test" {}
}
runtimeJar()
ideaPlugin()