Guava (Google Common Libraries).
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 ....
Here is the list of declaration for guava. If you use Maven you can use the following code to add the dependency for this POM file.
<dependency> <groupId>com.google.guava</groupId> <artifactId>guava</artifactId> <version>r09</version> </dependency>
If you think this Maven repository POM file listing for guava is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
Name:The Apache Software License, Version 2.0
URL: http://www.apache.org/licenses/LICENSE-2.0.txt.
The guava-r09 has 2 dependencies.The most popular ones are listed in the following table along with their categories and number of artifacts depending on them.
Category | Artifact | Depended By Count |
---|---|---|
JUnit | junit 4.5 JUnit is a regression testing framework written by Erich Gamma and Kent Beck. It is used by the developer who implements unit tests in Java. | 385 |
The following table lists the most popular artifacts which are depending on guava-r09. Their categories and depend by count are also listed.
Category | Artifact | Depended By Count |
---|---|---|
Development | mirage 1.0 This library provides methods around Java Reflection | 14 |
Database | hive-shims 0.9.0 Hive is a data warehouse infrastructure built on top of Hadoop see http://wiki.apache.org/hadoop/Hive | 6 |
Parser | closure-compiler r1352 Closure Compiler is a JavaScript optimizing compiler. It parses your JavaScript, analyzes it, removes dead code and rewrites and minimizes what's left. It also checks syntax, variable references, and types, and warns about common JavaScript pitfalls. It is used in many of Google's J... | 12 |
The following plugins are used in the guava-r09.jar
The following packages are defined in the guava-r09.jar
com.google.common.annotations com.google.common.base com.google.common.base.internal com.google.common.collect com.google.common.io com.google.common.net com.google.common.primitives com.google.common.util.concurrent
Here is the content of the POM file.
<?xml version="1.0" encoding="UTF-8"?> <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd"> <modelVersion>4.0.0</modelVersion> <parent> <groupId>com.google</groupId> <artifactId>google</artifactId> <version>5</version> </parent> <groupId>com.google.guava</groupId> <artifactId>guava</artifactId> <version>r09</version> <packaging>jar</packaging> <name>Guava (Google Common Libraries)</name> <description> 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. </description> <url>http://code.google.com/p/guava-libraries</url> <issueManagement> <system>code.google.com</system> <url>http://code.google.com/p/guava-libraries/issues</url> </issueManagement> <inceptionYear>2010</inceptionYear> <licenses> <license> <name>The Apache Software License, Version 2.0</name> <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url> <distribution>repo</distribution> </license> </licenses> <prerequisites> <maven>2.0.9</maven> </prerequisites> <scm> <connection>scm:svn:http://guava-libraries.googlecode.com/svn/trunk/</connection> <developerConnection>scm:svn:https://guava-libraries.googlecode.com/svn/trunk/</developerConnection> <url>http://code.google.com/p/guava-libraries/source/browse</url> </scm> <dependencies> <dependency> <groupId>com.google.code.findbugs</groupId> <artifactId>jsr305</artifactId> <version>1.3.7</version> <optional>true</optional> </dependency> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <version>4.5</version> <scope>test</scope> </dependency> </dependencies> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> <configuration> <source>1.5</source> <target>1.5</target> </configuration> </plugin> </plugins> <finalName>${project.artifactId}-${project.version}</finalName> <sourceDirectory>src</sourceDirectory> <testSourceDirectory>test-disabled</testSourceDirectory> </build> </project>