is guava-libraries available in maven repo?
Solution 1:
Starting from r03, Guava releases may be found in the central Maven repository.
You may include Guava by adding the following dependency to your POM:
<dependency>
<groupId>com.google.guava</groupId>
<artifactId>guava</artifactId>
<version>23.0</version>
</dependency>
Note: the above version number may be outdated when you read this. To know the latest available version, you may look here
Version updated on 19th Oct 2017.
Solution 2:
Bintray's JCenter is a superset of Maven Central as includes libraries from various repositories. Here's Google Guava.
You can click on "Set me up!" to get the instructions on how to configure your build tool to resolve from JCenter and on the "i" on a jar file to get the dependency declaration for your build tool.
You can also become a watcher to get notifications on new versions.
Solution 3:
mvnrepository is your friend. It has an index of maven repository space with maven, ivy and other details about artifacts.