357d12fc8e
The `kotlin-test` dependencies are left untouched as changing them affects publications, thus these versions are independent from the used inside our build #KTI-1349 In Progress
18 lines
376 B
Kotlin
18 lines
376 B
Kotlin
|
|
plugins {
|
|
kotlin("jvm")
|
|
}
|
|
|
|
dependencies {
|
|
api(project(":examples:scripting-jvm-simple-script"))
|
|
api(project(":kotlin-scripting-jvm-host-unshaded"))
|
|
testRuntimeOnly(project(":kotlin-compiler"))
|
|
testRuntimeOnly(project(":kotlin-scripting-compiler"))
|
|
testApi(libs.junit4)
|
|
}
|
|
|
|
sourceSets {
|
|
"main" { projectDefault() }
|
|
"test" { projectDefault() }
|
|
}
|