PCollections.
A Persistent Java Collections Library.
Here is the list of declaration for pcollections. If you use Maven you can use the following code to add the dependency for this POM file.
<dependency> <groupId>org.pcollections</groupId> <artifactId>pcollections</artifactId> <version>2.1.2</version> </dependency>
If you think this Maven repository POM file listing for pcollections is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
Name:The MIT License
URL: http://www.opensource.org/licenses/mit-license.php.
The pcollections-2.1.2 has 1 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 3.8.1 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. | 1966 |
The following plugins are used in the pcollections-2.1.2.jar
The following packages are defined in the pcollections-2.1.2.jar
org.pcollections
Here is the content of the POM file.
<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"> <parent> <groupId>org.sonatype.oss</groupId> <artifactId>oss-parent</artifactId> <version>7</version> </parent> <modelVersion>4.0.0</modelVersion> <groupId>org.pcollections</groupId> <artifactId>pcollections</artifactId> <packaging>jar</packaging> <version>2.1.2</version> <name>PCollections</name> <url>http://pcollections.org</url> <description>A Persistent Java Collections Library</description> <licenses> <license> <name>The MIT License</name> <url>http://www.opensource.org/licenses/mit-license.php</url> <distribution>repo</distribution> </license> </licenses> <scm> <connection>scm:svn:http://pcollections.googlecode.com/svn/tags/v2.1.2</connection> <developerConnection>scm:svn:https://pcollections.googlecode.com/svn/tags/v2.1.2</developerConnection> <url>http://pcollections.googlecode.com/svn/tags/v2.1.2</url> </scm> <dependencies> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <version>3.8.1</version> <scope>test</scope> </dependency> </dependencies> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> <version>2.3.2</version> <configuration> <source>1.5</source> <target>1.5</target> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-gpg-plugin</artifactId> <version>1.3</version> <executions> <execution> <id>sign-artifacts</id> <phase>verify</phase> <goals> <goal>sign</goal> </goals> </execution> </executions> </plugin> </plugins> </build> </project>