Skip to content

Instantly share code, notes, and snippets.

@umayrh
Created January 9, 2019 16:39
Show Gist options
  • Select an option

  • Save umayrh/bc938d2626734e9254b21629b3c2e282 to your computer and use it in GitHub Desktop.

Select an option

Save umayrh/bc938d2626734e9254b21629b3c2e282 to your computer and use it in GitHub Desktop.
Gradle: common resource dependency for multiple java projects
sourceSets {
main {
resources {
srcDirs += [
project(':data').sourceSets.main.resources
]
}
}
}
https://stackoverflow.com/questions/20136214/gradle-common-resource-dependency-for-multiple-java-projects
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment