c112d37ac1
also deprecate Import and CompileOptions annotations, because they do not seem generic enough. Create specific copie in the main-kts instead.
16 lines
274 B
Kotlin
16 lines
274 B
Kotlin
|
|
plugins {
|
|
kotlin("jvm")
|
|
}
|
|
|
|
dependencies {
|
|
compile(project(":kotlin-scripting-jvm"))
|
|
compile(project(":kotlin-scripting-dependencies"))
|
|
compile(project(":kotlin-scripting-dependencies-maven"))
|
|
}
|
|
|
|
sourceSets {
|
|
"main" { projectDefault() }
|
|
"test" { }
|
|
}
|