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

link|improve this question

75% accept rate
feedback

1 Answer

up vote 73 down vote accepted

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

link|improve this answer
3  
As of 7/27/2010, releases "r05" and "r06" are also in the central repo. repo2.maven.org/maven2/com/google/guava/guava – matt b Jul 27 '10 at 16:58
3  
The guava-io, guava-primitives, etc. subprojects have been abandoned. There's just guava, now. – Kevin Bourrillion Jul 27 '10 at 20:51
1  
I 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 :) – eneveu Jul 28 '10 at 9:08
1  
As of April 8 2011, it's now up to r09. – Jason Nichols Apr 20 '11 at 19:35
3  
And for GWT users, change the artifactId to guava-gwt. – Kevin Bourrillion Oct 8 '11 at 14:43
show 1 more comment
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.