mirror of
https://github.com/apple/pkl.git
synced 2026-03-23 01:29:20 +01:00
Enable caching for the native image building task and improves the caching effectiveness of some of the test tasks in the project.
20 lines
552 B
Kotlin
20 lines
552 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").withPropertyName("snippetTestsInput").withPathSensitivity(PathSensitivity.RELATIVE)
|
|
inputs.dir("src/test/files/SnippetTests/output").withPropertyName("snippetTestsOutput").withPathSensitivity(PathSensitivity.RELATIVE)
|
|
}
|