I have in gradle.build:
dependencies {
classpath 'something:1.0'
}
What I need to add in the file to add a local .jar file, which java can "import"? But I don't need to include this .jar in my application. Just like a shared library.
I tried:
classpath 'something:1.0','somethingelse:1.0'
classpath 'something:1.0, somethingelse:1.0'
classpath { 'something:1.0','somethingelse:1.0' }
compile files('somethingelse.jar')
classpath files('lib/somethingelse.jar')
classpath fileTree(dir: 'lib', include: '*.jar')