3

Ever since Google hosted its libraries in the new Google Maven Repository I'm having trouble keeping my dependencies up to date.

How can I check which libraries are availalbe in maven.google.com? In addition how can I see all the available version numbers of a particular library if I can't just browse the https://maven.google.com URL?

Any alternatives apart from navigating to https://developer.android.com/studio/build/dependencies.html#google-maven And checking the Website every time?

ThanosFisherman
  • 5,626
  • 12
  • 38
  • 63
  • Android Studio already highlights dependencies hosted on `maven.google.com` that have a newer version. – ianhanniballake Sep 10 '17 at 02:45
  • I'm using Android Studio 2.3.3 and it doesn't do that. It only highlights newer versions from the local repo inside Android SDK and not from maven repo. – ThanosFisherman Sep 10 '17 at 11:41
  • Yeah, you probably want to use a version of Android Studio released after `maven.google.com` came into existence, i.e., a 3.0 version. – ianhanniballake Sep 10 '17 at 12:20
  • Thanks for letting me know but I don't wanna mess with Android studio 3 yet since it's still in beta (if I'm not mistaken). Actually I found this link https://dl.google.com/dl/android/maven2/master-index.xml that lists all the libraries but I still don't know how to see the available versions of each one. I guess I will keep checking the website until Android Studio 3 goes stable. – ThanosFisherman Sep 10 '17 at 14:16
  • I would suggest to take a look at [versions-maven-plugin](http://www.mojohaus.org/versions-maven-plugin/display-dependency-updates-mojo.html) it might help here... – khmarbaise Sep 10 '17 at 15:03

1 Answers1

2

Seems that my prayers have been heard. You can now browse

https://maven.google.com and check available libraries and version numbers.

Related post here https://plus.google.com/+IanLake/posts/gJ4SuhDhpgC

ThanosFisherman
  • 5,626
  • 12
  • 38
  • 63