Files
kotlin-fork/libraries/examples/scripting/jvm-simple-script/script/build.gradle.kts
T
Ilya Chernikov 2c3a50e4b3 Refactor scripting examples:
- split into script def and host part
- remove bad dependencies
- organize it in a way that should be typical for user scenarios
2018-04-04 16:23:56 +02:00

1 line
158 B
Kotlin

apply {
plugin("kotlin")
}
dependencies {
compile(project(":kotlin-scripting-jvm"))
}
sourceSets {
"main" { projectDefault() }
"test" {}
}