I have loaded several jar files onto a host using curl command line. Now I would like to resolve the dependencies under Gradle'e dependencies block.
I have tried:
maven {
url "xxxxxx"
artifact()
}
and
flatDir {
dirs 'http://....'
}
on How to add local .jar file dependency to build.gradle file?
and use the relative path under compile "relativePath" but no luck.
Does anyone have tried this before?
Many thanks