Files
kotlin-fork/libraries/examples/scripting/jvm-embeddable-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

21 lines
498 B
Kotlin

plugins {
kotlin("jvm")
}
dependencies {
api(project(":examples:scripting-jvm-simple-script"))
compileOnly(project(":kotlin-scripting-jvm-host-unshaded"))
testRuntimeOnly(project(":kotlin-compiler-embeddable"))
testRuntimeOnly(project(":kotlin-scripting-compiler-embeddable"))
testRuntimeOnly(project(":kotlin-scripting-jvm-host"))
testRuntimeOnly(libs.guava)
testApi(libs.junit4)
}
sourceSets {
"main" { projectDefault() }
"test" { projectDefault() }
}