mirror of
https://github.com/apple/pkl.git
synced 2026-03-20 00:04:05 +01:00
20 lines
383 B
Kotlin
20 lines
383 B
Kotlin
plugins {
|
|
pklAllProjects
|
|
pklJavaLibrary
|
|
pklKotlinLibrary
|
|
}
|
|
|
|
dependencies {
|
|
implementation(projects.pklCore)
|
|
implementation(libs.msgpack)
|
|
implementation(libs.truffleApi)
|
|
implementation(libs.antlrRuntime)
|
|
|
|
testImplementation(projects.pklCommonsTest)
|
|
}
|
|
|
|
tasks.test {
|
|
inputs.dir("src/test/files/SnippetTests/input")
|
|
inputs.dir("src/test/files/SnippetTests/output")
|
|
}
|