Maven Repository - POM file for Data Structure commons-collections 2.1 2.1

Summary

Collections.

Commons Collections.

Declaration

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

<dependency>
   <groupId>commons-collections</groupId>
   <artifactId>commons-collections</artifactId>
   <version>2.1</version>
</dependency>

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

Depends on

The commons-collections-2.1 has 1 dependencies.The most popular ones are listed in the following table along with their categories and number of artifacts depending on them.

CategoryArtifactDepended By Count
JUnitjunit 3.7
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.
21




Depended by

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

CategoryArtifactDepended By Count
Databasecommons-dbcp 1.2
Commons Database Connection Pooling
12
Networkehcache 1.2.3
ehcache is a pure Java, in-process cache with the following features: 1. Fast. 2. Simple. 3. Multiple eviction policies: LRU, LFU and FIFO. 4. Caches can be in memory or on disk. 5. Disk Stores can be persistent between VM restarts. 6. Distributed caching using multicast and RMI,...
18
XMLcommons-digester 1.5
The Digester package lets you configure an XML->Java object mapping module which triggers certain actions called rules whenever a particular pattern of nested XML elements is recognized.
8
Databasecommons-dbcp 1.2.1
Commons Database Connection Pooling
20
Data Structurecommons-pool 1.2
Commons Object Pooling Library
18
Reportjasperreports 5.5.1
JasperReports Library
15
Reportjasperreports 3.7.6
JasperReports Library
10
XMLcommons-digester 1.7
The Digester package lets you configure an XML->Java object mapping module which triggers certain actions called rules whenever a particular pattern of nested XML elements is recognized.
182
XMLcommons-digester 1.4.1
The Digester package lets you configure an XML->Java object mapping module which triggers certain actions called rules whenever a particular pattern of nested XML elements is recognized.
31
XMLcommons-jelly-tags-xml 1.1
The Jelly XML Tag Library
154
XMLcommons-jelly 1.0
Jelly is a Java and XML based scripting engine. Jelly combines the best ideas from JSTL, Velocity, DVSL, Ant and Cocoon all together in a simple yet powerful scripting engine.
53
XMLstruts 1.2.4
The core of the Struts framework is a flexible control layer based on standard technologies like Java Servlets, JavaBeans, ResourceBundles, and Extensible Markup Language (XML), as well as various Jakarta Commons packages. Struts encourages application architectures based on the Model 2 approach, a...
12




Plugin

The following plugins are used in the commons-collections-2.1.jar

  1. maven-surefire-plugin

Packages

The following packages are defined in the commons-collections-2.1.jar

org.apache.commons.collections
org.apache.commons.collections.comparators
org.apache.commons.collections.iterators

POM File Source

Here is the content of the POM file.

<project>
  <modelVersion>4.0.0</modelVersion>
  <groupId>commons-collections</groupId>
  <artifactId>commons-collections</artifactId>
  <name>Collections</name>
  <version>2.1</version>
  <description>Commons Collections</description>
  <inceptionYear>2002</inceptionYear>
  
  <build>
    <plugins>
      <plugin>
        <artifactId>maven-surefire-plugin</artifactId>
        <configuration>
          <excludes>
            <exclude>**/TestAll.java</exclude>
            <exclude>**/BulkTest.java</exclude>
            <exclude>**/TestComparableComparator.java</exclude>
            <exclude>**/TestComparatorChain.java</exclude>
            <exclude>**/TestComparator.java</exclude>
            <exclude>**/TestCursorableLinkedList.java</exclude>
            <exclude>**/TestNullComparator.java</exclude>
            <exclude>**/TestReverseComparator.java</exclude>
            <exclude>**/LocalTestNode.java</exclude>
            <exclude>**/TestAbstractIntArrayList.java</exclude>
            <exclude>**/TestAbstractLongArrayList.java</exclude>
            <exclude>**/TestAbstractShortArrayList.java</exclude>
            <exclude>**/TestArrayList.java</exclude>
            <exclude>**/TestArrayStack.java</exclude>
            <exclude>**/TestBag.java</exclude>
            <exclude>**/TestCollection.java</exclude>
            <exclude>**/TestFastArrayList1.java</exclude>
            <exclude>**/TestFastArrayList.java</exclude>
            <exclude>**/TestFastHashMap1.java</exclude>
            <exclude>**/TestFastHashMap.java</exclude>
            <exclude>**/TestFastTreeMap1.java</exclude>
            <exclude>**/TestFastTreeMap.java</exclude>
            <exclude>**/TestIterator.java</exclude>
            <exclude>**/TestList.java</exclude>
            <exclude>**/TestLRUMap.java</exclude>
            <exclude>**/TestMap.java</exclude>
            <exclude>**/TestMultiHashMap.java</exclude>
            <exclude>**/TestObject.java</exclude>
            <exclude>**/TestProxyMap.java</exclude>
            <exclude>**/TestSequencedHashMap.java</exclude>
            <exclude>**/TestSoftRefHashMap.java</exclude>
            <exclude>**/TestSet.java</exclude>
            <exclude>**/TestTreeMap.java</exclude>
            <exclude>**/TestPredicatedCollection.java</exclude>
          </excludes>
        </configuration>
      </plugin>
    </plugins>
  </build>
  <dependencies>
    <dependency>
      <groupId>junit</groupId>
      <artifactId>junit</artifactId>
      <version>3.7</version>
      <scope>test</scope>
    </dependency>
  </dependencies>
</project>