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
2010-04-28 22:48:21
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
2010-07-27 16:58:15
The guava-io, guava-primitives, etc. subprojects have been abandoned. There's just guava, now.
Kevin Bourrillion
2010-07-27 20:51:58
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
2010-07-28 09:08:46