Files
kotlin-fork/libraries/examples/scripting/jvm-maven-deps/script/build.gradle.kts
T
Ilya Chernikov c112d37ac1 Consolidate resolving in the new lib, deprecate it in script-util
also deprecate Import and CompileOptions annotations, because they
do not seem generic enough. Create specific copie in the main-kts
instead.
2020-05-21 16:49:57 +02:00

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" { }
}