I am looking to find guava-libraries in maven repository. It looks like guava is adding more features to google-collections library.
6 Answers
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.

- 12,604
- 9
- 36
- 59
-
3As of 7/27/2010, releases "r05" and "r06" are also in the central repo. http://repo2.maven.org/maven2/com/google/guava/guava/ – matt b Jul 27 '10 at 16:58
-
6The guava-io, guava-primitives, etc. subprojects have been abandoned. There's just guava, now. – Kevin Bourrillion Jul 27 '10 at 20:51
-
1I updated my answer to point to r06, and removed mentions of the now abandoned guava subprojects. I also made it a "community wiki", so that people may update the version number as necessary :) – Etienne Neveu Jul 28 '10 at 09:08
-
1As of April 8 2011, it's now up to r09. – Jason Nichols Apr 20 '11 at 19:35
-
3And for GWT users, change the `artifactId` to `guava-gwt`. – Kevin Bourrillion Oct 08 '11 at 14:43
-
I could only find guava-gwt for R10 on the repository, and I need r08 – Jeff Axelrod Nov 14 '11 at 16:09
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.

- 22,610
- 5
- 62
- 90
mvnrepository is your friend. It has an index of maven repository space with maven, ivy and other details about artifacts.

- 6,997
- 6
- 37
- 53

- 12,364
- 20
- 77
- 135
You can find all guava maven repositories here: http://mvnrepository.com/artifact/com.google.guava

- 5,741
- 9
- 53
- 95
Find latest guava(version 17.0) maven repositories http://mvnrepository.com/artifact/com.google.guava/guava/17.0

- 126
- 12
-
While that’s true, the OP will surely prefer to include it in the POM, as shown in the accepted answer. – Michael Piefel Jul 22 '14 at 08:38
-
Guava: Google Core Libraries For Java: https://mvnrepository.com/artifact/com.google.guava/guava

- 8,521
- 2
- 39
- 51