Files
kotlin-fork/libraries/examples/scripting/jvm-simple-script/host/build.gradle.kts
T
Alexander.Likhachev 357d12fc8e [Build] Move JUnit dependencies into the version catalog
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
2023-09-06 22:47:33 +00:00

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() }
}