The basic structure of a dependency declaration in Gradle is GROUP:NAME:VERSION. Is there a way to pull a list of best matches from, say, Maven or Bintray, based on just the name of the dependency? e.g. I'd like to add hadoop to my project, but I don't know how to spell the group it belongs to, or what version to target.
Anas Rabei
Java to the end :)
I did not use gradle but when I face this situation with maven, I usually search for the latest version of the dependency on mvnrepository.com
Hope that help