So I have tried to add my local .jar file dependency to my build.gradle file:
apply plugin: \'java\' sourceSets { main { java { srcD
According to the documentation, use a relative path for a local jar dependency as follows:
dependencies { implementation files('libs/something_local.jar') }