So I have tried to add my local .jar file dependency to my build.gradle file:
apply plugin: \'java\' sourceSets { main { java { srcD
The following works for me:
compile fileTree(dir: 'libs', include: '*.jar')
Refer to the Gradle Documentation.