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>r08</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-r08 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-r08. Their categories and depend by count are also listed.
Category | Artifact | Depended By Count |
---|---|---|
Development | reflections 0.9.5 Reflections - a Java runtime metadata analysis | 24 |
OSGi | com.google.guava-all 1.0.0.r08.w1 Guava wrapped bundle | 25 |
Document Database | cassandra-all 1.1.5 The Apache Cassandra Project develops a highly scalable second-generation distributed database, bringing together Dynamo's fully distributed design and Bigtable's ColumnFamily-based data model. | 5 |
The following plugins are used in the guava-r08.jar
The following packages are defined in the guava-r08.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>r08</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>tests-disabled</testSourceDirectory> </build> </project>