Search code examples
javamavenguava

is guava-libraries available in maven repo?


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


Solution

  • 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.