Files
kotlin-fork/plugins/scripting/scripting-idea/build.gradle.kts
T
2018-04-04 16:23:56 +02:00

19 lines
234 B
Kotlin

description = "Kotlin Scripting IDEA Plugin"
apply { plugin("kotlin") }
dependencies {
compile(project(":kotlin-scripting-compiler"))
}
sourceSets {
"main" { projectDefault() }
"test" {}
}
runtimeJar()
ideaPlugin()