is guava-libraries available in maven repo?

前端 未结 6 813
心在旅途
心在旅途 2020-12-25 09:39

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

相关标签:
6条回答
  • 2020-12-25 09:50

    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.

    0 讨论(0)
  • 2020-12-25 09:50

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

    0 讨论(0)
  • 2020-12-25 09:52

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

    0 讨论(0)
  • 2020-12-25 09:56

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

    0 讨论(0)
  • 2020-12-25 09:57

    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.

    0 讨论(0)
  • 2020-12-25 09:57

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

    0 讨论(0)
提交回复
热议问题