How do I add resources to sourceSet with gradle?
I had a closer look at your build.gradle and it seems that paths are a little bit off. You specify source as src/model, yet your project structure and Java source suggest that model is your package name, which means the source declaration should be: main { java { srcDir ‘src’ } } Same for tests: … Read more