Nested model file directories are lost
mtdowling opened this issue · 0 comments
mtdowling commented
All models across all levels of directory nesting are merged into a flattened directory structure when building the JAR.
For example:
- foo.smithy
- bar/baz.smithy
Gets built as a JAR containing:
- META-INF/smithy/foo.smithy
- META-INF/smithy/baz.smithy
When instead, it should contain:
- META-INF/smithy/foo.smithy
- META-INF/smithy/bar/baz.smithy