How to "include" Thrift files from different modules?

Viewed 2250

Scenario: One big project with multiple sub-projects, SBT build definition.

rootproject/
  api/
    src/
      main/
       thrift/
         SomeService.thrift
  core/
    src/
      main/
        thrift/
         SomeModel.thrift

What is the correct way to include SomeModel.thrift in SomeService.thrift?

1 Answers
Related