guava

guava

Guava is a suite of core and expanded libraries that include utility classes, google's collections, io classes, and much much more. This project is a complete packaging of all the Guava libraries into a single jar. Individual portions of Guava can be used by downloading the appropriate module and its dependencies. Guava (complete) has only one code dependency - javax.annotation, per the JSR-305 spec.
http://code.google.com/p/guava-libraries
The Apache Software License, Version 2.0
Kevin Bourillion
Files download
File Operation
guava-r08.jar download
guava-r08.pom download
guava-r08-sources.jar download
Apache Maven
<dependency>
  <groupId>com.google.guava</groupId>
  <artifactId>guava</artifactId>
  <version>r08</version>
</dependency>
Gradle Groovy
implementation 'com.google.guava:guava:r08'
Gradle Kotlin
implementation("com.google.guava:guava:r08")
Scala SBT
libraryDependencies += "com.google.guava" % "guava" % "r08"
Groovy Grape
@Grapes(
  @Grab(group='com.google.guava', module='guava', version='r08')
)
Apache Ivy
<dependency org="com.google.guava" name="guava" rev="r08" />
Leiningen
[com.google.guava/guava "r08"]
Apache Buildr
'com.google.guava:guava:jar:r08'