Skip to content

Commit 5719209

Browse files
authored
feat(java): bundle per-section dialect fixtures in the extensions artifact (#49)
1 parent 40f43d1 commit 5719209

1 file changed

Lines changed: 4 additions & 2 deletions

File tree

java/extensions/build.gradle.kts

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,11 +4,13 @@ plugins {
44

55
dependencies {}
66

7-
// No code generation: bundle the Substrait extension YAMLs, text schemas and function
8-
// test-case files from the attached spec subtree as classpath resources under `substrait/`.
7+
// No code generation: bundle the Substrait extension YAMLs, text schemas, function
8+
// test-case files and per-section dialect fixtures from the attached spec subtree as
9+
// classpath resources under `substrait/`.
910
tasks.named<ProcessResources>("processResources") {
1011
val specDir = "${rootProject.projectDir}/../substrait"
1112
from("$specDir/extensions") { into("substrait/extensions") }
1213
from("$specDir/text") { into("substrait/text") }
1314
from("$specDir/tests/cases") { into("substrait/tests/cases") }
15+
from("$specDir/dialects/tests") { into("substrait/dialects/tests") }
1416
}

0 commit comments

Comments
 (0)