Maven Repository - POM file for Library google-collections 1.0 1.0

Summary

Google Collections Library.

Google Collections Library is a suite of new collections and collection-related goodness for Java 5.0.

Declaration

Here is the list of declaration for google-collections. If you use Maven you can use the following code to add the dependency for this POM file.

<dependency>
   <groupId>com.google.collections</groupId>
   <artifactId>google-collections</artifactId>
   <version>1.0</version>
</dependency>

If you think this Maven repository POM file listing for google-collections is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.

License

Name:The Apache Software License, Version 2.0
URL: http://www.apache.org/licenses/LICENSE-2.0.txt.





Depended by

The following table lists the most popular artifacts which are depending on google-collections-1.0. Their categories and depend by count are also listed.

CategoryArtifactDepended By Count
JEEjackson-databind 2.0.6
General data-binding functionality for Jackson: works on core streaming API
16
Testing Coding Stylecheckstyle 5.5
Checkstyle is a development tool to help programmers write Java code that adheres to a coding standard
32
JEEjackson-databind 2.0.2
General data-binding functionality for Jackson: works on core streaming API
9
JEEjackson-databind 2.0.5
General data-binding functionality for Jackson: works on core streaming API
9
JEEjackson-databind 2.0.0
General data-binding functionality for Jackson: works on core streaming API
5
Developmentreflections 0.9.5-RC2
Reflections - a Java runtime metadata analysis
10

Plugin

The following plugins are used in the google-collections-1.0.jar

  1. maven-compiler-plugin

Packages

The following packages are defined in the google-collections-1.0.jar

com.google.common.annotations
com.google.common.base
com.google.common.base.internal
com.google.common.collect




POM File Source

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>1</version>
  </parent>
  <groupId>com.google.collections</groupId>
  <artifactId>google-collections</artifactId>
  <version>1.0</version>
  <packaging>jar</packaging>
  <name>Google Collections Library</name>
  <description>Google Collections Library is a suite of new collections and collection-related goodness for Java 5.0</description>
  <inceptionYear>2007</inceptionYear>
  <url>http://code.google.com/p/google-collections/</url>
  <organization>
    <name>Google</name>
    <url>http://www.google.com</url>
  </organization>
  <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>
  <scm>
    <url>http://code.google.com/p/google-collections/source/browse/</url>
    <connection>scm:svn:http://google-collections.googlecode.com/svn/trunk/</connection>
  </scm>
  <!-- this is temporarily copied from the parent pom.  remove this section when that is used -->
  <distributionManagement>
    <repository>
      <id>google-maven-repository</id>
      <name>Google Maven Repository</name>
      <url>dav:https://google-maven-repository.googlecode.com/svn/repository/</url>
    </repository>
    <snapshotRepository>
      <id>google-maven-snapshot-repository</id>
      <name>Google Maven Snapshot Repository</name>
      <url>dav:https://google-maven-repository.googlecode.com/svn/snapshot-repository/</url>
      <uniqueVersion>true</uniqueVersion>
    </snapshotRepository>
  </distributionManagement>
  <dependencies>
    <dependency>
      <groupId>com.google.code.findbugs</groupId>
      <artifactId>jsr305</artifactId>
      <version>1.3.7</version>
      <optional>true</optional>
    </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>
  </build>
</project>