views:

1204

answers:

1

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

+16  A: 

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>r07</version>
</dependency>

Note: the above version number may be outdated when you read this. To know the latest available version, you may look here

eneveu
As 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
The guava-io, guava-primitives, etc. subprojects have been abandoned. There's just guava, now.
Kevin Bourrillion
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