So I have tried to add my local .jar file dependency to my build.gradle file:
apply plugin: \'java\' sourceSets { main { java { srcD
You could also do this which would include all JARs in the local repository. This way you wouldn't have to specify it every time.
dependencies { compile fileTree(dir: 'libs', include: ['*.jar']) }