Created
January 9, 2019 16:39
-
-
Save umayrh/bc938d2626734e9254b21629b3c2e282 to your computer and use it in GitHub Desktop.
Gradle: common resource dependency for multiple java projects
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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