is guava-libraries available in maven repo?

JavaMavenGuava

Java Problem Overview


I am looking to find guava-libraries in maven repository. It looks like guava is adding more features to google-collections library.

Java Solutions


Solution 1 - Java

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 - Java

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 - Java

mvnrepository is your friend. It has an index of maven repository space with maven, ivy and other details about artifacts.

Solution 4 - Java

You can find all guava maven repositories here: http://mvnrepository.com/artifact/com.google.guava

Solution 5 - Java

Find latest guava(version 17.0) maven repositories <http://mvnrepository.com/artifact/com.google.guava/guava/17.0>

Solution 6 - Java

Guava: Google Core Libraries For Java: https://mvnrepository.com/artifact/com.google.guava/guava

Attributions

All content for this solution is sourced from the original question on Stackoverflow.

The content on this page is licensed under the Attribution-ShareAlike 4.0 International (CC BY-SA 4.0) license.

Content TypeOriginal AuthorOriginal Content on Stackoverflow
QuestionmjleeView Question on Stackoverflow
Solution 1 - JavaEtienne NeveuView Answer on Stackoverflow
Solution 2 - JavaJBaruchView Answer on Stackoverflow
Solution 3 - JavaPeter KahnView Answer on Stackoverflow
Solution 4 - JavaSambhav SharmaView Answer on Stackoverflow
Solution 5 - Javajitendra.khedarView Answer on Stackoverflow
Solution 6 - JavaDavid SorokoView Answer on Stackoverflow