is guava-libraries available in maven repo?

mjlee picture mjlee · Mar 31, 2010 · Viewed 38.3k times · Source

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

Answer

Etienne Neveu picture Etienne Neveu · Apr 29, 2010

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.