I\'m developing a multi-module project with gradle/intellij-idea, and here is the structure of my project home:
project/ sub-project-1 /main/resources
The approach I took was to use project reference
sourceSets { main { resources { srcDirs += [ project(':data').sourceSets.main.resources ] } } }